-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 1.08 KB
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
[package]
name = "rustyolo"
version = "0.6.1"
edition = "2021"
license = "MIT"
[dependencies]
clap = { version = "4.5.7", features = ["derive", "env"] }
dirs = "6.0.0"
self_update = { version = "0.43", features = ["archive-tar", "compression-flate2"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0"
reqwest = { version = "0.13", features = ["blocking", "json"] }
[lints.clippy]
# Deny clippy warnings in CI/strict mode
# Run with: cargo clippy -- -D warnings
# Pedantic lints (best practices)
pedantic = { level = "warn", priority = -1 }
# Specific lints to enforce
# Note: lint groups must have lower priority than individual lints
all = { level = "warn", priority = -1 }
correctness = { level = "deny", priority = -1 }
suspicious = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
# Allow some pedantic lints that are too noisy
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"