summaryrefslogtreecommitdiffstats
path: root/vendor/h2/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/h2/src/lib.rs')
-rw-r--r--vendor/h2/src/lib.rs11
1 files changed, 8 insertions, 3 deletions
diff --git a/vendor/h2/src/lib.rs b/vendor/h2/src/lib.rs
index 830147113..a1fde6eb4 100644
--- a/vendor/h2/src/lib.rs
+++ b/vendor/h2/src/lib.rs
@@ -78,10 +78,15 @@
//! [`server::handshake`]: server/fn.handshake.html
//! [`client::handshake`]: client/fn.handshake.html
-#![doc(html_root_url = "https://docs.rs/h2/0.3.19")]
-#![deny(missing_debug_implementations, missing_docs)]
-#![cfg_attr(test, deny(warnings))]
+#![doc(html_root_url = "https://docs.rs/h2/0.3.22")]
+#![deny(
+ missing_debug_implementations,
+ missing_docs,
+ clippy::missing_safety_doc,
+ clippy::undocumented_unsafe_blocks
+)]
#![allow(clippy::type_complexity, clippy::manual_range_contains)]
+#![cfg_attr(test, deny(warnings))]
macro_rules! proto_err {
(conn: $($msg:tt)+) => {