mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
31 lines
572 B
TOML
31 lines
572 B
TOML
[package]
|
|
name = "aoc_2022"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ahash = "0.8.2"
|
|
anyhow = "1.0.66"
|
|
clap = { version = "4.0.19", features = ["derive"] }
|
|
itertools = "0.11"
|
|
ndarray = "0.15.6"
|
|
nom = "7.1.1"
|
|
strength_reduce = "0.2.4"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5.0"
|
|
|
|
[profile.release]
|
|
# Keep debug information in release for better flamegraphs
|
|
debug = true
|
|
|
|
[profile.bench]
|
|
# And same for benchmarking
|
|
debug = true
|
|
|
|
[[bench]]
|
|
name = "days"
|
|
harness = false
|