]> git.proxmox.com Git - rustc.git/blobdiff - vendor/quote/src/lib.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / vendor / quote / src / lib.rs
index fb09b5dcbfd924a83c3128999b2661c3a407285a..356e43a0524e021335b34357e51bed798373f026 100644 (file)
 //! };
 //! ```
 
-#![forbid(unsafe_code)]
 // Quote types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/quote/1.0.8")]
+#![doc(html_root_url = "https://docs.rs/quote/1.0.9")]
+#![allow(
+    clippy::doc_markdown,
+    clippy::missing_errors_doc,
+    clippy::missing_panics_doc,
+    clippy::module_name_repetitions
+)]
 
 #[cfg(all(
     not(all(target_arch = "wasm32", target_os = "unknown")),