-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (70 loc) · 1.97 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (70 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
members = [
"aoc",
"aoc-2015",
"aoc-2016",
"aoc-2017",
"aoc-2018",
"aoc-2019",
"aoc-2020",
"aoc-2021",
"aoc-2022",
"aoc-2023",
"aoc-2024",
"aoc-2025",
"aoc-common",
"aoc-meta",
"aoc-test",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "PPL"
version = "0.1.0"
[workspace.dependencies]
aoc-2015 = { path = "aoc-2015" }
aoc-2016 = { path = "aoc-2016" }
aoc-2017 = { path = "aoc-2017" }
aoc-2018 = { path = "aoc-2018" }
aoc-2019 = { path = "aoc-2019" }
aoc-2020 = { path = "aoc-2020" }
aoc-2021 = { path = "aoc-2021" }
aoc-2022 = { path = "aoc-2022" }
aoc-2023 = { path = "aoc-2023" }
aoc-2024 = { path = "aoc-2024" }
aoc-2025 = { path = "aoc-2025" }
aoc-common = { path = "aoc-common" }
aoc-meta = { path = "aoc-meta" }
aoc-test = { path = "aoc-test" }
bitvec = "1.0.1"
clap = { version = "4.5.53", features = ["derive"] }
clap-stdin = "0.8.0"
dashmap = "7.0.0-rc2"
deranged = "0.5.5"
disjoint-sets = "0.4.2"
divan = "0.1.21"
either = "1.15.0"
enum-iterator = "2.3.0"
enum-map = "2.7.3"
eyre = "0.6.12"
fnv = "1.0.7"
itertools = "0.14.0"
itoa = "1.0.16"
md-5 = "0.11.0-rc.3"
memchr = "2.7.6"
nohash-hasher = "0.2.0"
pastey = "0.2.1"
pathsep = "0.1.1"
petgraph = { version = "0.8.3", features = ["rayon"] }
pretty_assertions = "1.4.1"
rayon = "1.11.0"
regex = "1.12.2"
reqwest = { version = "0.12.24", features = ["cookies"] }
seahash = "4.1.0"
serde_json = "1.0.146"
thiserror = "2.0.17"
tinystr = { version = "0.8.2", features = ["std"] }
tinyvec = { version = "1.10.0", features = ["latest_stable_rust"] }
void = "1.0.2"
wide = "1.1.1"
winnow = { version = "0.7.14", features = ["simd"] }