-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (44 loc) · 834 Bytes
/
Copy pathCargo.toml
File metadata and controls
56 lines (44 loc) · 834 Bytes
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
[workspace]
members = ["aoc-proc"]
[package]
name = "adventofcode"
version = "0.5.0"
edition = "2024"
default-run = "2025"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "2018"
path = "src/aoc2018/main.rs"
[[bin]]
name = "2019"
path = "src/aoc2019/main.rs"
[[bin]]
name = "2020"
path = "src/aoc2020/main.rs"
[[bin]]
name = "2021"
path = "src/aoc2021/main.rs"
[[bin]]
name = "2022"
path = "src/aoc2022/main.rs"
[[bin]]
name = "2023"
path = "src/aoc2023/main.rs"
[[bin]]
name = "2024"
path = "src/aoc2024/main.rs"
[[bin]]
name = "2025"
path = "src/aoc2025/main.rs"
[dependencies]
aoc-proc = { path = "aoc-proc" }
arrayvec = "0.7"
ahash = "0.8"
rayon = "1"
nom = "8"
rand = "0.10"
microlp = "0.5"
[profile.release]
lto = true
panic = 'abort'
codegen-units = 1