summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-10-09 14:18:14 +1300
committerSophie Forrest <git@sophieforrest.com>2024-10-09 14:18:14 +1300
commit394af13667ad2fb81f28eaac59f2e9bdbbe5e520 (patch)
tree2291611f4f9a7d1130e4807de3ba6528b435f4fd /Cargo.toml
parenta434c31af9376c739837b2d1fadaf8c1b84c843e (diff)
chore: remove devenv
Uses a native nix shell.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 28f9cb3..57d05e7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,14 +29,10 @@ unsafe_code = "warn"
 unused = { level = "warn", priority = -1 }
 
 [lints.clippy]
-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"
+complexity = { level = "warn", priority = -1 }
 create_dir = "warn"
 dbg_macro = "warn"
 default_numeric_fallback = "warn"
@@ -63,8 +59,11 @@ multiple_inherent_impl = "warn"
 mutex_atomic = "warn"
 needless_return = "warn"
 non_ascii_literal = "warn"
+nursery = { level = "warn", priority = -1 }
 panic_in_result_fn = "warn"
 pattern_type_mismatch = "warn"
+pedantic = { level = "warn", priority = -1 }
+perf = { level = "warn", priority = -1 }
 rc_buffer = "warn"
 rc_mutex = "warn"
 rest_pat_in_fully_bound_structs = "warn"
@@ -74,6 +73,7 @@ str_to_string = "warn"
 string_add = "warn"
 string_slice = "warn"
 string_to_string = "warn"
+suspicious = { level = "warn", priority = -1 }
 tabs_in_doc_comments = "allow"
 try_err = "warn"
 undocumented_unsafe_blocks = "warn"