-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (42 loc) · 990 Bytes
/
Copy pathCargo.toml
File metadata and controls
55 lines (42 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "margo"
version = "0.3.18"
edition = "2024"
authors = ["Joseph Bulbulia"]
description = "CLI tool for scaffolding margot causal inference projects"
license = "MIT"
repository = "https://github.com/go-bayes/margo"
keywords = ["causal-inference", "r", "scaffold", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "margo"
path = "src/main.rs"
[dependencies]
# cli argument parsing
clap = { version = "4", features = ["derive"] }
# error handling
anyhow = "1"
# REPL line editor with vi mode
reedline = "0.38"
# terminal colours (catppuccin mocha)
nu-ansi-term = "0.50"
# terminal control
crossterm = "0.28"
# hashing for template manifests
sha2 = "0.10"
# fuzzy matching
nucleo = "0.5"
nucleo-matcher = "0.3"
# interactive prompts/pickers
inquire = "0.7"
# config paths
dirs = "6"
# json metadata parsing
serde_json = "1"
[dev-dependencies]
tempfile = "3"
toml = "0.8"
[profile.release]
lto = true
codegen-units = 1
strip = true