Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e303b3c110..88818580a3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -205,6 +205,11 @@ useless_asref = "allow"
assigning_clones = "allow"
# Does not work with macros
vec_init_then_push = "allow"
+# Our tests have a lot of these
+literal_string_with_formatting_args = "allow"
+# This lint has been empowered but now also triggers on cases where its invalid to do so
+# due to it ignoring move analysis
+unnecessary_map_or = "allow"
## Following lints should be tackled at some point
too_many_arguments = "allow"