We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de1b0cf commit 432a1d7Copy full SHA for 432a1d7
Cargo.toml
@@ -10,6 +10,14 @@ documentation = "https://docs.rs/std-next"
10
categories = ["rust-patterns"]
11
keywords = ["std", "polyfill", "utility"]
12
13
+[lints.rust]
14
+unsafe_code = "deny"
15
+
16
+[lints.clippy]
17
+all = { level = "deny", priority = -1 }
18
+pedantic = { level = "deny", priority = -1 }
19
+cargo = { level = "deny", priority = -1 }
20
21
[lib]
22
name = "stdx"
23
src/lib.rs
@@ -1,5 +1,3 @@
1
-#![deny(unsafe_code)]
2
-#![deny(clippy::all, clippy::pedantic, clippy::cargo)]
3
#![allow(
4
clippy::inline_always,
5
clippy::missing_errors_doc, // TODO
0 commit comments