pmutil 0.2.0

Utils for proc-macro
Documentation
Build #101683 2018-05-31T06:40:34.120100+00:00
# rustc version
rustc 1.26.0-dev (0eb87c9bf 2018-03-16)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading pmutil v0.2.0
Fresh unicode-xid v0.1.0
Compiling proc-macro2 v0.4.4
Running `rustc --crate-name proc_macro2 .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="nightly"' --cfg 'feature="proc-macro"' --cfg 'feature="default"' -C metadata=00e4124801921956 -C extra-filename=-00e4124801921956 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern unicode_xid=/home/cratesfyi/cratesfyi/debug/deps/libunicode_xid-3eff40339770c4d8.rlib --extern-version unicode_xid=unicode-xid,0.1.0 --cap-lints allow`
error[E0433]: failed to resolve. Could not find `Group` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:122:45
|
122 |                 let mut group = proc_macro::Group::new(delim, tt.stream.inner.unwrap_nightly());
|                                             ^^^^^ Could not find `Group` in `proc_macro`

error[E0433]: failed to resolve. Could not find `Punct` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:131:42
|
131 |                 let mut op = proc_macro::Punct::new(tt.as_char(), spacing);
|                                          ^^^^^ Could not find `Punct` in `proc_macro`

error[E0433]: failed to resolve. Could not find `token_stream` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:213:25
|
213 |     Nightly(proc_macro::token_stream::IntoIter),
|                         ^^^^^^^^^^^^ Could not find `token_stream` in `proc_macro`

error[E0433]: failed to resolve. Could not find `Ident` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:468:60
|
468 |             Span::Nightly(s) => Ident::Nightly(proc_macro::Ident::new(string, s)),
|                                                            ^^^^^ Could not find `Ident` in `proc_macro`

error[E0433]: failed to resolve. Could not find `Ident` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:475:60
|
475 |             Span::Nightly(s) => Ident::Nightly(proc_macro::Ident::new_raw(string, s)),
|                                                            ^^^^^ Could not find `Ident` in `proc_macro`

error[E0412]: cannot find type `Ident` in module `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:461:25
|
461 |     Nightly(proc_macro::Ident),
|                         ^^^^^ not found in `proc_macro`
help: possible candidates are found in other modules, you can import them into scope
|
3   | use Ident;
|
3   | use imp::Ident;
|
3   | use stable::Ident;
|

error[E0412]: cannot find type `Ident` in module `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:495:44
|
495 |     fn unwrap_nightly(self) -> proc_macro::Ident {
|                                            ^^^^^ not found in `proc_macro`
help: possible candidates are found in other modules, you can import them into scope
|
3   | use Ident;
|
3   | use imp::Ident;
|
3   | use stable::Ident;
|

error[E0599]: no function or associated item named `new` found for type `proc_macro::TokenStream` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:45:34
|
45 |             TokenStream::Nightly(proc_macro::TokenStream::new())
|                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::TokenStream`

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:53:13
|
53 |             TokenStream::Nightly(tts) => tts.is_empty(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Nightly(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:54:13
|
54 |             TokenStream::Stable(tts) => tts.is_empty(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Stable(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:81:13
|
81 |             TokenStream::Nightly(tts) => tts.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Nightly(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:82:13
|
82 |             TokenStream::Stable(tts) => tts.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Stable(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:162:13
|
162 |             TokenStream::Nightly(tts) => {
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Nightly(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:177:13
|
177 |             TokenStream::Stable(tts) => tts.extend(streams),
|             ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Stable(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:185:13
|
185 |             TokenStream::Nightly(tts) => tts.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Nightly(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:186:13
|
186 |             TokenStream::Stable(tts) => tts.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenStream::Stable(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:206:13
|
206 |             LexError::Nightly(e) => e.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&LexError::Nightly(e)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:207:13
|
207 |             LexError::Stable(e) => e.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&LexError::Stable(e)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:234:13
|
234 |             TokenTreeIter::Nightly(iter) => iter.next()?,
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenTreeIter::Nightly(iter)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:235:13
|
235 |             TokenTreeIter::Stable(iter) => return iter.next(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenTreeIter::Stable(iter)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0599]: no associated item named `Group` found for type `proc_macro::TokenTree` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:238:13
|
238 |             proc_macro::TokenTree::Group(tt) => {
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `proc_macro::TokenTree`

error[E0599]: no associated item named `Punct` found for type `proc_macro::TokenTree` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:250:13
|
250 |             proc_macro::TokenTree::Punct(tt) => {
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `proc_macro::TokenTree`

error[E0599]: no associated item named `Ident` found for type `proc_macro::TokenTree` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:259:13
|
259 |             proc_macro::TokenTree::Ident(s) => ::Ident::_new(Ident::Nightly(s)).into(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `proc_macro::TokenTree`

error[E0599]: no associated item named `Literal` found for type `proc_macro::TokenTree` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:260:13
|
260 |             proc_macro::TokenTree::Literal(l) => ::Literal::_new(Literal::Nightly(l)).into(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `proc_macro::TokenTree`

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:266:13
|
266 |             TokenTreeIter::Nightly(tts) => tts.size_hint(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenTreeIter::Nightly(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:267:13
|
267 |             TokenTreeIter::Stable(tts) => tts.size_hint(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&TokenTreeIter::Stable(tts)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:297:13
|
297 |             SourceFile::Nightly(_, f) => f,
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Nightly(_, f)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:298:13
|
298 |             SourceFile::Stable(a) => a.path(),
|             ^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:304:13
|
304 |             SourceFile::Nightly(a, _) => a.is_real(),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Nightly(a, _)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:305:13
|
305 |             SourceFile::Stable(a) => a.is_real(),
|             ^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:319:13
|
319 |             SourceFile::Nightly(a, _) => a.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Nightly(a, _)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:320:13
|
320 |             SourceFile::Stable(a) => a.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&SourceFile::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:355:14
|
355 |             (Span::Nightly(a), Span::Nightly(b)) => Span::Nightly(a.resolved_at(b)),
|              ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Nightly(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:356:14
|
356 |             (Span::Stable(a), Span::Stable(b)) => Span::Stable(a.resolved_at(b)),
|              ^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:363:14
|
363 |             (Span::Nightly(a), Span::Nightly(b)) => Span::Nightly(a.located_at(b)),
|              ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Nightly(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:364:14
|
364 |             (Span::Stable(a), Span::Stable(b)) => Span::Stable(a.located_at(b)),
|              ^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:424:14
|
424 |             (Span::Nightly(a), Span::Nightly(b)) => a.eq(b),
|              ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Nightly(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:424:32
|
424 |             (Span::Nightly(a), Span::Nightly(b)) => a.eq(b),
|                                ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Nightly(b)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:425:14
|
425 |             (Span::Stable(a), Span::Stable(b)) => a.eq(b),
|              ^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Stable(a)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:425:31
|
425 |             (Span::Stable(a), Span::Stable(b)) => a.eq(b),
|                               ^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Stable(b)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:453:13
|
453 |             Span::Nightly(s) => s.fmt(f),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Nightly(s)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:454:13
|
454 |             Span::Stable(s) => s.fmt(f),
|             ^^^^^^^^^^^^^^^ help: consider using a reference: `&Span::Stable(s)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:482:13
|
482 |             Ident::Nightly(t) => Span::Nightly(t.span()),
|             ^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:483:13
|
483 |             Ident::Stable(t) => Span::Stable(t.span()),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:489:14
|
489 |             (Ident::Nightly(t), Span::Nightly(s)) => t.set_span(s),
|              ^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:490:14
|
490 |             (Ident::Stable(t), Span::Stable(s)) => t.set_span(s),
|              ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:506:13
|
506 |             Ident::Nightly(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:507:13
|
507 |             Ident::Stable(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:515:13
|
515 |             Ident::Nightly(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:516:13
|
516 |             Ident::Stable(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Ident::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0599]: no function or associated item named `u8_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u16_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u32_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u64_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `usize_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i8_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i16_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i32_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i64_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `isize_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `f32_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `f64_suffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:531:34
|
531 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
552 | /     suffixed_numbers! {
553 | |         u8_suffixed => u8,
554 | |         u16_suffixed => u16,
555 | |         u32_suffixed => u32,
...   |
565 | |         f64_suffixed => f64,
566 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u8_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u16_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u32_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `u64_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `usize_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i8_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i16_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i32_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `i64_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `isize_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:543:34
|
543 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
568 | /     unsuffixed_integers! {
569 | |         u8_unsuffixed => u8,
570 | |         u16_unsuffixed => u16,
571 | |         u32_unsuffixed => u32,
...   |
578 | |         isize_unsuffixed => isize,
579 | |     }
| |_____- in this macro invocation

error[E0599]: no function or associated item named `f32_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:583:30
|
583 |             Literal::Nightly(proc_macro::Literal::f32_unsuffixed(f))
|                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`

error[E0599]: no function or associated item named `f64_unsuffixed` found for type `proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:591:30
|
591 |             Literal::Nightly(proc_macro::Literal::f64_unsuffixed(f))
|                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:623:13
|
623 |             Literal::Nightly(lit) => Span::Nightly(lit.span()),
|             ^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Nightly(lit)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:624:13
|
624 |             Literal::Stable(lit) => Span::Stable(lit.span()),
|             ^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Stable(lit)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0599]: no method named `span` found for type `&proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:623:56
|
623 |             Literal::Nightly(lit) => Span::Nightly(lit.span()),
|                                                        ^^^^

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:630:14
|
630 |             (Literal::Nightly(lit), Span::Nightly(s)) => lit.set_span(s),
|              ^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Nightly(lit)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:631:14
|
631 |             (Literal::Stable(lit), Span::Stable(s)) => lit.set_span(s),
|              ^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Stable(lit)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0599]: no method named `set_span` found for type `&mut proc_macro::Literal` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:630:62
|
630 |             (Literal::Nightly(lit), Span::Nightly(s)) => lit.set_span(s),
|                                                              ^^^^^^^^

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:653:13
|
653 |             Literal::Nightly(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:654:13
|
654 |             Literal::Stable(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:662:13
|
662 |             Literal::Nightly(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Nightly(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/unstable.rs:663:13
|
663 |             Literal::Stable(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&Literal::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

error: aborting due to 84 previous errors

Some errors occurred: E0412, E0433, E0599, E0658.
For more information about an error, try `rustc --explain E0412`.
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not compile `proc-macro2`.,
cause: process didn't exit successfully: `rustc --crate-name proc_macro2 .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.4/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="nightly" --cfg feature="proc-macro" --cfg feature="default" -C metadata=00e4124801921956 -C extra-filename=-00e4124801921956 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern unicode_xid=/home/cratesfyi/cratesfyi/debug/deps/libunicode_xid-3eff40339770c4d8.rlib --extern-version unicode_xid=unicode-xid,0.1.0 --cap-lints allow` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.