parse-generics-poc 0.1.0

A proof-of-concept implementation of the proposed RFC #1583; provides macros for parsing generics and where clauses. Note: requires a compatible nightly compiler. For a stable alternative, see the parse-generics-shim crate.
Build #103693 2018-06-06 06:48:10

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version
rustc 1.28.0-dev (b9bf4f162 2018-06-02)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Documenting parse-generics-poc v0.1.0
Running `rustdoc --crate-name parse_generics_poc .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `syntax::ast::TokenTree`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs:46:25
|
46 | use syntax::ast::{self, TokenTree};
|                         ^^^^^^^^^ no `TokenTree` in `ast`

error[E0432]: unresolved import `syntax::parse::token::str_to_ident`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs:50:5
|
50 | use syntax::parse::token::str_to_ident;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `str_to_ident` in `parse::token`

error[E0412]: cannot find type `Delimited` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs:590:18
|
590 | -> Result<(&ast::Delimited, &[TokenTree]), Error<'static>> {
|                  ^^^^^^^^^ not found in `ast`
help: possible candidates are found in other modules, you can import them into scope
|
43  | use syntax::ext::tt::quoted::Delimited;
|
43  | use syntax::tokenstream::Delimited;
|

error[E0412]: cannot find type `Delimited` in module `ast`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs:600:18
|
600 | -> Result<(&ast::Delimited, &[TokenTree]), Error<'static>> {
|                  ^^^^^^^^^ not found in `ast`
help: possible candidates are found in other modules, you can import them into scope
|
43  | use syntax::ext::tt::quoted::Delimited;
|
43  | use syntax::tokenstream::Delimited;
|

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `parse-generics-poc`.,
cause: process didn't exit successfully: `rustdoc --crate-name parse_generics_poc .cargo/registry/src/github.com-1ecc6299db9ec823/parse-generics-poc-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.