-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (51 loc) · 1.03 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"d01",
"d02",
"d03",
"d04",
"d05",
"d06",
"d07",
"d08",
"d09",
"d10",
"d11",
"d12",
"d13",
"d14",
"d15",
"d16",
"d17",
"d18",
"d19",
"d20",
"d21",
"d22",
"d23",
"d24",
"d25",
]
resolver = "2"
[workspace.dependencies]
libaoc = { git = "https://github.com/ugur-a/libaoc" }
itertools = "0.13.0"
test-case = "3.3.1"
anyhow = "1.0.89"
derive_deref = "1.1.1"
nom = "7.1.3"
pathfinding = "4.11.0"
[patch.crates-io]
grb = { git = "https://github.com/ugur-a/rust-grb.git", branch = "feat/genconstr_indicator" }
grb-sys2 = { git = "https://github.com/ugur-a/rust-grb.git", branch = "feat/genconstr_indicator" }
[profile.release]
debug = true
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_sign_loss = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
missing_panics_doc = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"