-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 940 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
[package]
name = "one"
version = "1.1.0"
edition = "2021"
license = "Unlicense"
repository = "https://github.com/rene-d/advent-of-rust"
[features]
ascii = []
anim = ["image"]
[build-dependencies]
cc = "*"
[dependencies]
aoc = { path = "crates/aoc" }
assembunny = { path = "crates/assembunny" }
intcode = { path = "crates/intcode" }
rustc-hash = "*"
colored = "*"
pest = { version = "*", default-features = false }
pest_derive = { version = "*", default-features = true }
petgraph = "*"
rand = "*"
regex = "*"
rustworkx-core = "*"
scan_fmt = "*"
serde_json = "*"
strum = { version = "*", features = ["strum_macros", "derive"] }
strum_macros = "*"
text_io = "*"
z3 = "*"
nom = "7"
num = "*"
num-traits = "*"
itertools = "*"
lazy_static = "*"
md5 = "*"
image = { version = "*", optional = true }
indicatif = "*"
fraction = "*"
geo = "*"
geo-types = "*"
bytecount = "*"
divisors = "*"
[lints.clippy]
pedantic = "forbid"
nursery = "forbid"