summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
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"