-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (36 loc) · 836 Bytes
/
Cargo.toml
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
[package]
name = "aoc"
version = "0.1.0"
edition = "2021"
[dependencies]
atoi = "2.0.0"
clap = { version = "4.5.22", features = ["derive"] }
colored = "2.1.0"
criterion = { version = "0.5.1", features = ["real_blackbox"] }
fxhash = "0.2.1"
num-traits = { version = "0.2.19", features = ["i128"] }
rayon = "1.10.0"
[dev-dependencies]
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = 3
strip = true
debug = false
debug-assertions = false
[profile.release.package."*"]
codegen-units = 1
opt-level = 3
strip = true
debug = false
debug-assertions = false
[profile.profile]
inherits = "release"
debug = true
[[bench]]
name = "benchmark"
harness = false
[lints.clippy]
# Allow #[inline(always)] -- I have made the bold assumption that I know what I am doing
inline_always = { level = "allow", priority = 1 }