-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 940 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 940 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
[package]
name = "weighted-code-coverage"
version = "0.3.0"
edition = "2021"
default-run = "weighted-code-coverage"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rust-code-analysis = "=0.0.24"
serde_json = { version = "^1.0", features = ["preserve_order"] }
serde = { version = "^1.0", features = ["derive"] }
thiserror = "^2.0.6"
clap = { version = "^4.4.11", features = ["derive"] }
crossbeam = "^0.8.2"
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
rayon = "^1.8.0"
cargo_metadata = "^0.19"
minijinja = { version = "^2.0", features = ["loader"] }
[dev-dependencies]
insta = { version = "^1.37.0", features = ["yaml", "redactions"] }
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = "unwind"
incremental = false
overflow-checks = false
strip = "debuginfo"