-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 955 Bytes
/
Cargo.toml
File metadata and controls
50 lines (42 loc) · 955 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "aoc"
version = "0.1.0"
edition = "2024"
[features]
default = ["simd"]
simd = []
[dependencies]
aoc_proc_macros = { path = "./crates/aoc_proc_macros" }
atoi = "2.0"
atoi_simd = "0.18.1"
clap = { version = "4.6", features = ["derive"] }
colored = "3.1"
itertools = "0.14"
ndarray = { version = "0.17", features = ["blas", "rayon", "serde"] }
num = "0.4.3"
num-traits = { version = "0.2", features = ["i128"] }
rayon = "1.11"
rustc-hash = "2.1"
smallvec = "2.0.0-alpha.12"
[dev-dependencies]
criterion = { version = "4.4", package = "codspeed-criterion-compat", features = ["csv_output", "html_reports"] }
[profile.release]
panic = "abort"
codegen-units = 1
lto = "fat"
opt-level = 3
strip = true
debug = false
debug-assertions = false
[profile.profile]
inherits = "release"
panic = "abort"
codegen-units = 1
lto = "fat"
opt-level = 3
strip = false
debug = true
debug-assertions = false
[[bench]]
name = "benchmark"
harness = false