-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (62 loc) · 923 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[workspace.package]
version = "0.0.1"
authors = ["staslock"]
description = "Advent of code 2022"
[workspace]
members = [
"d01_01",
"d01_02",
"d02_01",
"d02_02",
"d03_01",
"d03_02",
"d04_01",
"d04_02",
"d05_01",
"d05_02",
"d06_01",
"d06_02",
"d07_01",
"d07_02",
"d08_01",
"d08_02",
"d09_01",
"d09_02",
"d10_01",
"d10_02",
"d11_01",
"d11_02",
"d12_01",
"d12_02",
"d13_01",
"d13_02",
"d14_01",
"d14_02",
"d15_01",
"d15_02",
"d16_01",
"d16_02",
"d17_01",
"d17_02",
"d18_01",
"d18_02",
"d19_01",
"d19_02",
"d20_01",
"d20_02",
"d21_01",
"d21_02",
"d22_01",
"d22_02",
"d23_01",
"d23_02",
"d24_01",
"d24_02",
"d25_01",
"runner"
]
[workspace.dependencies]
regex = "1.7.0"
itertools = "0.10.5"
scanf = "1.2.1"
lazy_static = "1.4.0"