Releases: dtolnay/proc-macro2
Releases · dtolnay/proc-macro2
1.0.54
- Performance improvement to "span-locations" feature (#373)
- Fix unbounded memory usage when calling proc-macro2's parser from a fuzzer (#374)
1.0.53
- Add support for Rust 1.66's
source_text()
method (#350)
1.0.51
- Implement rustc's limit on the number of
#
used for delimiting a raw string literal: 255 (#364)
1.0.50
- Implement Hash for proc_macro2::LineColumn (#362)
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)