-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (47 loc) · 1.1 KB
/
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
46
47
48
49
50
[package]
name = "puzzling"
version = "0.1.0"
edition = "2021"
authors = ["Adrien 'Larandar' DUDOUIT-EXPOSITO"]
[features]
default = ["advent_2021"]
all = ["completed", "advent_all"]
# Feature to disable tests of completed tests
completed = []
# Advent of Code
advent = []
advent_all = ["advent_2019", "advent_2020", "advent_2021"]
advent_2019 = ["advent"]
advent_2020 = ["advent"]
advent_2021 = ["advent"]
[dependencies]
# CLI and other bootstrap
clap = { version = "<3", features = ["color"] }
config = "*"
dirs = "*"
indicatif = "*"
reqwest = { version = "0.11.6", features = ["blocking"] }
serde = "*"
serde_derive = "*"
unindent = "*"
# Errorhandling and logging
anyhow = "*"
log = "*"
simplelog = { version = "*", features = ["paris"] }
paris = "*"
# Data structures
array2d = "*"
# Utils
regex = "*"
# Utils for iterators
itertools = "*"
rayon = "*"
bimap = "*"
[dev-dependencies]
env_logger = "*"
test-log = { version = "*", features = ["log", "trace"] }
tracing = { version = "*", default-features = false }
tracing-subscriber = { version = "*", default-features = false, features = [
"env-filter",
"fmt",
] }