aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-05-15 23:36:41 -0700
committerHaibo Huang <hhb@google.com>2020-05-15 23:36:41 -0700
commit2a9ae1e038ae7055abc6377094f5734c9a98de75 (patch)
tree0abc4f2d8acf7ee4bc637fba089b11fbf96d2b0f /src/lib.rs
parent02f14c5d4951383ba6b4a47c25bea980ce6c699e (diff)
downloadproc-macro2-2a9ae1e038ae7055abc6377094f5734c9a98de75.tar.gz
Upgrade rust/crates/proc-macro2 to 1.0.13
Test: None Change-Id: I381957d40d3f8b94d168ebdc1dd31eb4f024b22d
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ecd4301..32faf17 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -78,7 +78,7 @@
//! a different thread.
// Proc-macro2 types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/proc-macro2/1.0.12")]
+#![doc(html_root_url = "https://docs.rs/proc-macro2/1.0.13")]
#![cfg_attr(any(proc_macro_span, super_unstable), feature(proc_macro_span))]
#![cfg_attr(super_unstable, feature(proc_macro_raw_ident, proc_macro_def_site))]
@@ -96,8 +96,7 @@ use std::path::PathBuf;
use std::rc::Rc;
use std::str::FromStr;
-#[macro_use]
-mod strnom;
+mod parse;
#[cfg(wrap_proc_macro)]
mod detection;