mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 12:50:32 +01:00
26 lines
385 B
TOML
26 lines
385 B
TOML
[package]
|
|
name = "aoc-2021"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
clap = { version = "3", features = ["derive"] }
|
|
itertools = "0.10"
|
|
nom = "7"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[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
|