-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
78 lines (68 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "advent-rs"
version = "2018.8.1"
edition = "2021"
authors = ["Arnaud 'red' Rouyer"]
readme = "README.md"
[[bin]]
name = "advent-rs"
path = "src/main.rs"
doc = false
doctest = false
test = false
[lib]
name = "advent_rs"
path = "src/lib.rs"
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 2
[profile.release]
opt-level = 3
strip = true # Strip symbols
panic = "abort" # Abort on panic
# lto = true # Enable Link Time Optimization
# codegen-units = 1 # Reduce number of codegen units to increase optimizations.
[dependencies]
argh = "0.1.10"
itertools = "0.13.0"
md-5 = "0.10.6"
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1.2"
criterion = { version = "0.5.1", features = ["html_reports"] }
mutants = "0.0.3"
[[bench]]
name = "year_2015"
harness = false
# [[bench]]
# name = "year_2015_day_01"
# harness = false
# [[bench]]
# name = "year_2015_day_03"
# harness = false
# [[bench]]
# name = "year_2015_day_05"
# harness = false
[[bench]]
name = "year_2016"
harness = false
[[bench]]
name = "year_2017"
harness = false
# [[bench]]
# name = "year_2017_day_01"
# harness = false
# [[bench]]
# name = "year_2017_day_02"
# harness = false
# [[bench]]
# name = "year_2017_day_04"
# harness = false
# [[bench]]
# name = "year_2017_day_13"
# harness = false
[[bench]]
name = "year_2018"
harness = false