-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 935 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
[package]
name = "advent_of_code"
version = "0.1.0"
edition = "2021"
[dependencies]
md5 = "0.7.0" # hashing used in AoC 2015
ansi_term = "0.12.1" # console font formatting
regex = "1.5.4"
indoc = "1.0.3" # multi-line indented strings
lazy_static = "1.4.0" # avoid re-compiling regex
itertools = "0.10.1" # combinatorics and more
json = "0.12.4"
priority-queue = "1.1.1"
ndarray = "0.15.4"
gcd = "2.0.2"
statrs = "0.16.0"
petgraph = "0.6.0" # graphs
bimap = "0.6.1" # bijective maps
serde_scan = "0.4.1" # alternative to regex for parsing of AoC input files
trees = "0.4.2"
num-integer = "0.1.44"
once-cell-regex = "0.2.1"
scan_fmt = "0.2.6"
num = "0.4.0"
map-macro = "0.2.4"
dotenv = "0.15.0"
clap = { version = "4.5.20", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["blocking"] }
chrono = "0.4.38"
spinners = "4.1.1"
anyhow = "1.0.92"
rayon = "1.10.0"
[dev-dependencies]
rstest = "0.15.0"
criterion = "0.4.0"