diff --git a/earthly/rust/stdcfgs/cargo_manifest/project.toml b/earthly/rust/stdcfgs/cargo_manifest/project.toml index cf9df0cd5..5278f2be3 100644 --- a/earthly/rust/stdcfgs/cargo_manifest/project.toml +++ b/earthly/rust/stdcfgs/cargo_manifest/project.toml @@ -22,6 +22,8 @@ unescaped_backticks = "deny" pedantic = { level = "deny", priority = -1 } unwrap_used = "deny" expect_used = "deny" +todo = "deny" +unimplemented = "deny" exit = "deny" get_unwrap = "deny" index_refutable_slice = "deny" diff --git a/earthly/rust/stdcfgs/cargo_manifest/workspace.toml b/earthly/rust/stdcfgs/cargo_manifest/workspace.toml index 432122b13..86dfcc1be 100644 --- a/earthly/rust/stdcfgs/cargo_manifest/workspace.toml +++ b/earthly/rust/stdcfgs/cargo_manifest/workspace.toml @@ -22,6 +22,8 @@ unescaped_backticks = "deny" pedantic = { level = "deny", priority = -1 } unwrap_used = "deny" expect_used = "deny" +todo = "deny" +unimplemented = "deny" exit = "deny" get_unwrap = "deny" index_refutable_slice = "deny" diff --git a/earthly/rust/stdcfgs/clippy.toml b/earthly/rust/stdcfgs/clippy.toml index 6933b8164..154626ef4 100644 --- a/earthly/rust/stdcfgs/clippy.toml +++ b/earthly/rust/stdcfgs/clippy.toml @@ -1 +1 @@ -allow-expect-in-tests = true +allow-unwrap-in-tests = true diff --git a/examples/rust/Cargo.toml b/examples/rust/Cargo.toml index b2e55c1ca..1cfc0fc57 100644 --- a/examples/rust/Cargo.toml +++ b/examples/rust/Cargo.toml @@ -31,6 +31,8 @@ unescaped_backticks = "deny" pedantic = { level = "deny", priority = -1 } unwrap_used = "deny" expect_used = "deny" +todo = "deny" +unimplemented = "deny" exit = "deny" get_unwrap = "deny" index_refutable_slice = "deny" diff --git a/examples/rust/clippy.toml b/examples/rust/clippy.toml index 6933b8164..154626ef4 100644 --- a/examples/rust/clippy.toml +++ b/examples/rust/clippy.toml @@ -1 +1 @@ -allow-expect-in-tests = true +allow-unwrap-in-tests = true diff --git a/utilities/dbviz/Cargo.toml b/utilities/dbviz/Cargo.toml index 7f4017694..c1c58329b 100644 --- a/utilities/dbviz/Cargo.toml +++ b/utilities/dbviz/Cargo.toml @@ -26,6 +26,8 @@ unescaped_backticks = "deny" pedantic = { level = "deny", priority = -1 } unwrap_used = "deny" expect_used = "deny" +todo = "deny" +unimplemented = "deny" exit = "deny" get_unwrap = "deny" index_refutable_slice = "deny" diff --git a/utilities/dbviz/clippy.toml b/utilities/dbviz/clippy.toml index 6933b8164..154626ef4 100644 --- a/utilities/dbviz/clippy.toml +++ b/utilities/dbviz/clippy.toml @@ -1 +1 @@ -allow-expect-in-tests = true +allow-unwrap-in-tests = true