aoc2024/7/Cargo.toml
Keenan Tims 3e0bc0d5cc
day7: parallel solution, < 100ms
This is definitely a problem that calls for DFS, but I couldn't be
bothered.
2024-12-06 22:52:00 -08:00

10 lines
136 B
TOML

[package]
name = "day7"
version = "0.1.0"
edition = "2021"
[dependencies]
itertools = "0.13.0"
rayon = "1.10.0"
thread_local = "1.1.8"