aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2019-08-10 13:03:35 -0700
committerDavid Tolnay <dtolnay@gmail.com>2019-08-10 13:03:35 -0700
commit7d0f1bc413a4dfca0fb403afdc3fc7a825326868 (patch)
tree5fae125bca71134ee119a7b5d9b28f9521ae5123
parentd41b84e4531c56abfa9f097b72e941b8c6b6845d (diff)
downloadplatform_external_rust_crates_quote-7d0f1bc413a4dfca0fb403afdc3fc7a825326868.tar.gz
platform_external_rust_crates_quote-7d0f1bc413a4dfca0fb403afdc3fc7a825326868.tar.bz2
platform_external_rust_crates_quote-7d0f1bc413a4dfca0fb403afdc3fc7a825326868.zip
Update crate-level rustdoc for 1.0
-rw-r--r--src/lib.rs12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4db5460..68db337 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -21,12 +21,9 @@
//! general-purpose Rust quasi-quoting library and is not specific to procedural
//! macros.
//!
-//! *Version requirement: Quote supports any compiler version back to Rust's
-//! very first support for procedural macros in Rust 1.15.0.*
-//!
//! ```toml
//! [dependencies]
-//! quote = "0.6"
+//! quote-next = "1.0.0-rc2"
//! ```
//!
//! # Example
@@ -72,13 +69,6 @@
//! }
//! };
//! ```
-//!
-//! # Recursion limit
-//!
-//! The `quote!` macro relies on deep recursion so some large invocations may
-//! fail with "recursion limit reached" when you compile. If it fails, bump up
-//! the recursion limit by adding `#![recursion_limit = "128"]` to your crate.
-//! An even higher limit may be necessary for especially large invocations.
// Quote types in rustdoc of other crates get linked to here.
#![doc(html_root_url = "https://docs.rs/quote-next/1.0.0-rc2")]