-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 743 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
[package]
name = "zeromount"
version = "2.0.216-dev"
edition = "2021"
[dependencies]
clap = { version = "= 4.5.57", features = ["derive"] }
serde = { version = "= 1.0.228", features = ["derive"] }
serde_json = "= 1.0.149"
toml = "= 0.8.23"
rayon = "= 1.11.0"
tracing = "= 0.1.44"
tracing-subscriber = { version = "= 0.3.22", features = ["env-filter"] }
anyhow = "= 1.0.101"
thiserror = "= 2.0.18"
libc = "= 0.2.180"
rand = "= 0.8.5"
zip = { version = "= 8.1.0", default-features = false, features = ["deflate"] }
resetprop = { path = "external/resetprop-rs/crates/resetprop" }
[dev-dependencies]
tempfile = "3"
[profile.dev]
strip = false
debug = 2
opt-level = 0
[profile.release]
lto = true
strip = true
opt-level = "s"
codegen-units = 1