aoc2024/Cargo.toml
Keenan Tims 8b011941c4
Some checks failed
test / AoC 2024 (push) Failing after 1m7s
CI: make a workspace
2024-12-13 18:09:22 -08:00

24 lines
467 B
TOML

[package]
name = "aoc2024"
version = "0.1.0"
edition = "2021"
[dependencies]
aoc-runner = "0.3.0"
aoc-runner-derive = "0.3.0"
atoi = "2.0.0"
bitflags = "2.6.0"
cached = "0.54.0"
grid = { version = "0.1.0", path = "utils/grid" }
itertools = "0.13.0"
rayon = "1.10.0"
regex = "1.11.1"
rustc-hash = "2.1.0"
thread_local = "1.1.8"
[profile.release]
lto = true
[workspace]
members = [ ".", "utils/grid", "target/aoc/aoc-autobuild" ]
default-members = [ ".", "utils/*" ]