-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.18 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
[workspace]
members = ["zb_core", "zb_io", "zb_cli"]
resolver = "3"
[workspace.package]
rust-version = "1.90"
[workspace.dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "fs", "process"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
console = "0.16.2"
indicatif = "0.18.3"
reqwest = { version = "0.13.1", default-features = false, features = ["json", "stream", "rustls", "http2"] }
rustls = { version = "0.23.26", features = ["aws-lc-rs"] }
rustls-native-certs = "0.8.3"
flate2 = "1.1.8"
tar = "0.4.44"
xz2 = "0.1.7"
zstd = "0.13.3"
zip = { version = "6.0.0", default-features = false, features = ["deflate"] }
rusqlite = { version = "0.38", features = ["bundled"] }
futures = "0.3.31"
futures-util = "0.3.31"
rayon = "1.11.0"
regex = "1.12.2"
sha2 = "0.10.9"
walkdir = "2.5.0"
fs4 = "0.13.1"
libc = "0.2.180"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
strsim = "0.11.1"
# Dev dependencies
tempfile = "3"
wiremock = "0.6"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true