-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 917 Bytes
/
Cargo.toml
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
[package]
name = "advent-of-code"
version = "0.1.0"
edition = "2021"
[[bench]]
name = "bench"
harness = false
[dependencies]
# Binary-only
clap = { version = "4.5.20", features = ["derive"] }
clap-stdin = "0.5.1"
# Library + Binary
enum-iterator = "2.1.0"
paste = "1.0.15"
rayon = "1.10.0"
thiserror = "2.0.6"
wide = "0.7.28"
eyre = "0.6.12"
nohash-hasher = "0.2.0"
itoa = "1.0"
winnow = { version = "0.6.20", features = ["simd"] }
tinystr = { version = "0.8.0", features = ["std"] }
fnv = "1.0.7"
petgraph = { version = "0.6.5", features = ["rayon"] }
itertools = "0.13.0"
serde_json = "1.0.132"
enum-map = "2.7.3"
either = "1.13.0"
memchr = "2.7.4"
pathsep = "0.1.1"
regex = "1.11.1"
void = "1.0.2"
[target.'cfg(windows)'.dependencies]
md-5 = "0.10.6"
[target.'cfg(not(windows))'.dependencies]
md-5 = { version = "0.10.6", features = ["asm"] }
[dev-dependencies]
pretty_assertions = "1.4.1"
criterion = "0.5"