Files
adventofcode/2021/Cargo.toml
Bert Peters dde9c0adbf Update to RC version of clap
Deriving a parser has become an opt-in feature so we need to enable
that.
2021-12-09 12:14:15 +01:00

15 lines
257 B
TOML

[package]
name = "aoc-2021"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "3.0.0-rc.0", features = ["derive"] }
itertools = "0.10"
nom = "7"
[profile.release]
# Keep debug information in release for better flamegraphs
debug = true