2024-12-02 06:25:29 +00:00
|
|
|
[package]
|
|
|
|
name = "aoc2024"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-12-07 10:01:10 +00:00
|
|
|
[features]
|
2024-12-11 10:20:28 +00:00
|
|
|
full = ["day1", "day2", "day3", "day4", "day5", "day6", "day7", "day8"]
|
2024-12-07 10:01:10 +00:00
|
|
|
default = ["full"]
|
|
|
|
day1 = []
|
|
|
|
day2 = []
|
|
|
|
day3 = []
|
|
|
|
day4 = []
|
|
|
|
day5 = []
|
|
|
|
day6 = []
|
|
|
|
day7 = []
|
2024-12-11 10:20:28 +00:00
|
|
|
day8 = []
|
2024-12-07 10:01:10 +00:00
|
|
|
|
2024-12-02 06:25:29 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-03 07:30:50 +00:00
|
|
|
color-eyre = "0.6.3"
|
2024-12-08 09:08:09 +00:00
|
|
|
rayon = "1.10.0"
|
2024-12-03 10:27:45 +00:00
|
|
|
regex = "1.11.1"
|
2024-12-03 07:30:50 +00:00
|
|
|
tracing = "0.1.41"
|
|
|
|
tracing-subscriber = "0.3.19"
|
2024-12-06 13:22:11 +00:00
|
|
|
tracing-test = "0.2.5"
|