Releases: dtolnay/proc-macro2
Releases · dtolnay/proc-macro2
1.0.49
- Opt out of
-Zrustdoc-scrape-examples
on docs.rs for now
1.0.48
- Documentation improvements
1.0.47
- Fix integer overflow when nesting depth of nested comments exceeds 4 billion (#357)
1.0.46
- Make proc_macro2::TokenStream's
FromStr
impl consistent with proc_macro::TokenStream's on strings that begin with a byte order mark \u{feff}
(#353)
1.0.45
- Fix panic on parsing disallowed raw identifiers such as
r#self
(#351)
1.0.44
- Expose
span.before()
and span.after()
to access an empty Span
located immediately before or after the input span (#348, upstream tracking issue: rust-lang/rust#87552)
1.0.43
- Add keywords to crates.io metadata
1.0.42
- Improve parsing performance in non-macro mode (#335)
- Expose a size_hint() for TokenStream's iterator (#334)
1.0.41
- Produce an accurate
.size_hint()
from TokenStream
's iterator (#334)
1.0.40
- Stabilize
Ident::new_raw
constructor (#331, thanks @mystor)