-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.13 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
[package]
name = "advent_of_code_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#-- -Wclippy::style -Dwarnings -Dclippy::pedantic -Aclippy::cast-possible-truncation -Aclippy::must-use-candidate -Aclippy::implicit-hasher -Aclippy::missing-panics-doc -Aclippy::cast-sign-loss -Aclippy::cast-possible-wrap
[lints.rust]
warnings = "deny"
nonstandard-style = "deny"
unused = "deny"
refining-impl-trait = "deny"
let-underscore = "deny"
keyword-idents = "deny"
future-incompatible = "deny"
[lints.clippy]
style = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
cast-possible-truncation = "allow"
cast-possible-wrap = "allow"
cast-sign-loss = "allow"
must-use-candidate = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
implicit-hasher = "allow"
[dependencies]
clap = { version = "4.4.8", features = ["derive"] }
itertools = "0.13.0"
rayon = "1.10.0"
reqwest = { version = "0.12.9", features = ["blocking"] }
rand = "0.8.5"
anyhow = "1.0.93"
regex = "1.11.1"
gif = "0.13.1"
[dev-dependencies]
pretty_assertions = "1.4.1"