diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-10-04 23:25:44 +1300 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-10-04 23:25:44 +1300 |
| commit | 1f82a90833990db8efe6111f89a9126a2fde74c5 (patch) | |
| tree | ba7783a34a51fa710e332b00f824cef93abc2436 /Cargo.toml | |
| parent | d58a4d4ec245ea336b0e8b93e5ae3907b39395b4 (diff) | |
feat: refactor tooling
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml index a9fe318..532c12d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bitflags = "2.4.1" +bitflags = "2.6.0" [lints.rust] missing_copy_implementations = "warn" @@ -14,14 +14,14 @@ missing_debug_implementations = "warn" missing_docs = "warn" single_use_lifetimes = "warn" unsafe_code = "warn" -unused = "warn" +unused = { level = "warn", priority = -1 } [lints.clippy] -complexity = "warn" -nursery = "warn" -pedantic = "warn" -perf = "warn" -suspicious = "warn" +complexity = { level = "warn", priority = -1 } +nursery = { level = "warn", priority = -1 } +pedantic = { level = "warn", priority = -1 } +perf = { level = "warn", priority = -1 } +suspicious = { level = "warn", priority = -1 } alloc_instead_of_core = "warn" as_underscore = "warn" clone_on_ref_ptr = "warn" |