mocktopus 0.3.4

Mocking framework for Rust
Build #98491 2018-05-06T20:09:15.446410+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 mocktopus v0.3.4
Fresh unicode-xid v0.1.0
Compiling proc-macro2 v0.3.8
Running `rustc --crate-name proc_macro2 .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="nightly"' --cfg 'feature="proc-macro"' -C metadata=ebbe7a59d2769c52 -C extra-filename=-ebbe7a59d2769c52 --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.3.8/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 `Op` in `proc_macro`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:131:42
|
131 |                 let mut op = proc_macro::Op::new(tt.op(), spacing);
|                                          ^^ Could not find `Op` 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.3.8/src/unstable.rs:191:25
|
191 |     Nightly(proc_macro::token_stream::IntoIter),
|                         ^^^^^^^^^^^^ Could not find `token_stream` in `proc_macro`

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/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.3.8/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.3.8/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.3.8/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.3.8/src/unstable.rs:163:13
|
163 |             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.3.8/src/unstable.rs:164:13
|
164 |             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.3.8/src/unstable.rs:184:13
|
184 |             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.3.8/src/unstable.rs:185:13
|
185 |             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.3.8/src/unstable.rs:212:13
|
212 |             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.3.8/src/unstable.rs:213:13
|
213 |             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.3.8/src/unstable.rs:216:13
|
216 |             proc_macro::TokenTree::Group(tt) => {
|             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `proc_macro::TokenTree`

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

error[E0599]: no associated item named `Term` found for type `proc_macro::TokenTree` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:237:13
|
237 |             proc_macro::TokenTree::Term(s) => ::Term::_new(Term::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.3.8/src/unstable.rs:238:13
|
238 |             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.3.8/src/unstable.rs:244:13
|
244 |             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.3.8/src/unstable.rs:245:13
|
245 |             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.3.8/src/unstable.rs:275:13
|
275 |             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.3.8/src/unstable.rs:276:13
|
276 |             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.3.8/src/unstable.rs:282:13
|
282 |             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.3.8/src/unstable.rs:283:13
|
283 |             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.3.8/src/unstable.rs:297:13
|
297 |             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.3.8/src/unstable.rs:298:13
|
298 |             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.3.8/src/unstable.rs:333:14
|
333 |             (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.3.8/src/unstable.rs:334:14
|
334 |             (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.3.8/src/unstable.rs:341:14
|
341 |             (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.3.8/src/unstable.rs:342:14
|
342 |             (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.3.8/src/unstable.rs:402:14
|
402 |             (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.3.8/src/unstable.rs:402:32
|
402 |             (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.3.8/src/unstable.rs:403:14
|
403 |             (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.3.8/src/unstable.rs:403:31
|
403 |             (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.3.8/src/unstable.rs:431:13
|
431 |             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.3.8/src/unstable.rs:432:13
|
432 |             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[E0599]: no function or associated item named `new` found for type `proc_macro::Term` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:446:47
|
446 |             Span::Nightly(s) => Term::Nightly(proc_macro::Term::new(string, s)),
|                                               ^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Term`

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:453:13
|
453 |             Term::Nightly(t) => t.as_str(),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:454:13
|
454 |             Term::Stable(t) => t.as_str(),
|             ^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:460:13
|
460 |             Term::Nightly(t) => Span::Nightly(t.span()),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:461:13
|
461 |             Term::Stable(t) => Span::Stable(t.span()),
|             ^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::Stable(t)`
|
= help: add #![feature(match_default_bindings)] to the crate attributes to enable

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

error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:467:14
|
467 |             (Term::Nightly(t), Span::Nightly(s)) => t.set_span(s),
|              ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:468:14
|
468 |             (Term::Stable(t), Span::Stable(s)) => t.set_span(s),
|              ^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::Stable(t)`
|
= 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::Term` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/unstable.rs:467:55
|
467 |             (Term::Nightly(t), Span::Nightly(s)) => t.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.3.8/src/unstable.rs:484:13
|
484 |             Term::Nightly(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:485:13
|
485 |             Term::Stable(t) => t.fmt(f),
|             ^^^^^^^^^^^^^^^ help: consider using a reference: `&Term::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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:500:34
|
500 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
521 | /     suffixed_numbers! {
522 | |         u8_suffixed => u8,
523 | |         u16_suffixed => u16,
524 | |         u32_suffixed => u32,
...   |
534 | |         f64_suffixed => f64,
535 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:512:34
|
512 |                   Literal::Nightly(proc_macro::Literal::$name(n))
|                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `proc_macro::Literal`
...
537 | /     unsuffixed_integers! {
538 | |         u8_unsuffixed => u8,
539 | |         u16_unsuffixed => u16,
540 | |         u32_unsuffixed => u32,
...   |
547 | |         isize_unsuffixed => isize,
548 | |     }
| |_____- 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.3.8/src/unstable.rs:552:30
|
552 |             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.3.8/src/unstable.rs:560:30
|
560 |             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.3.8/src/unstable.rs:592:13
|
592 |             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.3.8/src/unstable.rs:593:13
|
593 |             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.3.8/src/unstable.rs:592:56
|
592 |             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.3.8/src/unstable.rs:599:14
|
599 |             (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.3.8/src/unstable.rs:600:14
|
600 |             (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.3.8/src/unstable.rs:599:62
|
599 |             (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.3.8/src/unstable.rs:622:13
|
622 |             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.3.8/src/unstable.rs:623:13
|
623 |             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.3.8/src/unstable.rs:631:13
|
631 |             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.3.8/src/unstable.rs:632:13
|
632 |             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 80 previous errors

Some errors occurred: E0433, E0599, E0658.
For more information about an error, try `rustc --explain E0433`.
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.3.8/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="default" --cfg feature="nightly" --cfg feature="proc-macro" -C metadata=ebbe7a59d2769c52 -C extra-filename=-ebbe7a59d2769c52 --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.