-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (64 loc) · 1.34 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (64 loc) · 1.34 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "sprout"
version = "0.1.2"
edition = "2021"
build = "build.rs"
[features]
markdown-docs = []
[dependencies]
anyhow = "1.0.79"
capturing-glob = "0.1.1"
clap = { version = "4.4.13", features = ["deprecated",
"derive",
"suggestions",
"color",
"env",
"unicode",
"wrap_help"] }
clap-markdown = "0.1.3"
colored = "2.1.0"
console = "0.15.8"
dialoguer = "0.11.0"
duration-macro = "0.1.0"
dyn-clone = "1.0.16"
edit = "0.1.5"
env_logger = "0.10.1"
homedir = "0.2.1"
indicatif = "0.17.7"
log = "0.4.20"
passwords = "3.1.16"
regex = "1.10.3"
reqwest = { version = "0.11.24", features = ["native-tls-vendored"] }
rustic_backend = "0.1.1"
rustic_core = "0.2.0"
self_update = { version = "0.39.0", features = ["archive-tar", "compression-flate2"] }
serde = "1.0.196"
serde_json = "1.0.113"
serde_yaml = "0.9.31"
sha2 = "0.10.8"
tabwriter = "1.4.0"
tempfile = "3.9.0"
[dev-dependencies]
assert_cmd = "2.0.13"
dircpy = "0.3.16"
predicates = "3.0.4"
pretty_assertions = "1.4.0"
rand = "0.8.5"
[build-dependencies]
built = "0.7.1"
[profile.release]
strip = true
lto = true
panic = "abort"
[profile.test]
opt-level = 3
debug = false
strip = "none"
debug-assertions = true
overflow-checks = true
lto = false
incremental = true
codegen-units = 256
rpath = false
[patch.crates-io]
zstd-sys = { git = "https://github.com/harana-oss/zstd-rs.git" }