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.
2 parents 390dd47 + 7df4a6e commit f930e7bCopy full SHA for f930e7b
README.md
@@ -47,7 +47,7 @@ $ cargo add async-h1
47
```
48
49
## Safety
50
-This crate uses ``#![deny(unsafe_code)]`` to ensure everything is implemented in
+This crate uses ``#![forbid(unsafe_code)]`` to ensure everything is implemented in
51
100% Safe Rust.
52
53
## Contributing
src/lib.rs
@@ -91,7 +91,7 @@
91
//! }
92
//! ```
93
94
-// #![forbid(unsafe_code, rust_2018_idioms)]
+#![forbid(unsafe_code, rust_2018_idioms)]
95
#![deny(missing_debug_implementations, nonstandard_style)]
96
#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)]
97
#![cfg_attr(test, deny(warnings))]
0 commit comments