mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
28 lines
513 B
TOML
28 lines
513 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]
|
|
anyhow = "1.0.66"
|
|
clap = { version = "4.0.19", features = ["derive"] }
|
|
itertools = "0.10.5"
|
|
nom = "7.1.1"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4.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
|