aoc2024/Cargo.toml

24 lines
417 B
TOML
Raw Normal View History

[package]
2024-12-16 14:44:21 -08:00
edition = "2021"
name = "aoc2024"
version = "0.1.0"
[dependencies]
aoc-runner = "0.3.0"
aoc-runner-derive = "0.3.0"
atoi = "2.0.0"
bitflags = "2.6.0"
cached = "0.54.0"
2024-12-13 23:05:30 -08:00
colored = "2.1.0"
2024-12-16 14:44:21 -08:00
grid = {version = "0.1.0", path = "utils/grid"}
itertools = "0.13.0"
2024-12-16 14:44:21 -08:00
misc = {path = "utils/misc"}
nom = "7.1.3"
rayon = "1.10.0"
regex = "1.11.1"
2024-12-12 14:01:04 -08:00
rustc-hash = "2.1.0"
thread_local = "1.1.8"
2024-12-11 18:40:29 -08:00
[profile.release]
2024-12-12 14:01:04 -08:00
lto = true