summaryrefslogtreecommitdiffstats
path: root/vendor/pem-rfc7468/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/pem-rfc7468/src/lib.rs')
-rw-r--r--vendor/pem-rfc7468/src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/vendor/pem-rfc7468/src/lib.rs b/vendor/pem-rfc7468/src/lib.rs
index 15da39eed..45f4877df 100644
--- a/vendor/pem-rfc7468/src/lib.rs
+++ b/vendor/pem-rfc7468/src/lib.rs
@@ -1,18 +1,20 @@
#![no_std]
-#![cfg_attr(docsrs, feature(doc_cfg))]
+#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![doc(
- html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
- html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
+ html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
+ html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
)]
#![deny(unsafe_code)]
#![warn(
clippy::integer_arithmetic,
+ clippy::mod_module_files,
clippy::panic,
clippy::panic_in_result_fn,
clippy::unwrap_used,
missing_docs,
rust_2018_idioms,
+ unused_lifetimes,
unused_qualifications
)]