-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 651 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 651 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
[package]
name = "complexity"
version = "0.4.2"
authors = ["Joshua Clayton <joshua.clayton@gmail.com>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ignore = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1.0"
dirs-next = "2.0"
mimalloc = { version = "*", default-features = false, optional = true }
crossbeam-channel = "0.5"
num_cpus = "1.0"
clap = { version = "4", features = ["derive"] }
[dev-dependencies]
approx = "0.4"
totems = "0.2"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"