diff options
Diffstat (limited to 'vendor/quote/src/lib.rs')
-rw-r--r-- | vendor/quote/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/quote/src/lib.rs b/vendor/quote/src/lib.rs index d871fb080..1cd7cd626 100644 --- a/vendor/quote/src/lib.rs +++ b/vendor/quote/src/lib.rs @@ -92,7 +92,7 @@ //! [prettyplease]: https://github.com/dtolnay/prettyplease // Quote types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/quote/1.0.29")] +#![doc(html_root_url = "https://docs.rs/quote/1.0.32")] #![allow( clippy::doc_markdown, clippy::missing_errors_doc, @@ -102,6 +102,8 @@ clippy::wrong_self_convention, )] +extern crate alloc; + #[cfg(feature = "proc-macro")] extern crate proc_macro; |