aoc2022/Cargo.toml
Victor 4fac6e63ee
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
day14
2022-12-15 12:19:26 +01:00

29 lines
464 B
TOML

[package]
name = "aoc2022"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = "*"
eyre = "*"
regex = "*"
im = "*"
memoize = "*"
minmaxn = "*"
num = "*"
rayon = "*"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[profile.test]
opt-level = 1
[profile.release]
lto = true
[[bench]]
name = "my_benchmark"
harness = false