string_to_expr 0.0.2

Compile-time expression evaluation for strings
Build #4251 2016-08-02T18:15:22.550534+00:00
# rustc version
rustc 1.12.0-nightly (54c0dcfd6 2016-07-28)
# docs.rs version
cratesfyi 0.2.0 (5dbd676 2016-07-30)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading string_to_expr v0.0.2
Documenting string_to_expr v0.0.2
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs --crate-name string_to_expr -o /home/cratesfyi/string_to_expr-0.0.2/doc -L dependency=/home/cratesfyi/string_to_expr-0.0.2/debug -L dependency=/home/cratesfyi/string_to_expr-0.0.2/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:11:5: 11:28 error: unresolved import `rustc::plugin::Registry`. Could not find `plugin` in `rustc` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:11 use rustc::plugin::Registry;
^~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:14:13: 14:43 error: unresolved import `syntax::diagnostic::FatalError`. Could not find `diagnostic` in `syntax` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:14         use syntax::diagnostic::FatalError;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:41:13: 41:37 note: in this expansion of panictry! (defined in .cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs)
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:14:13: 14:43 error: unresolved import `syntax::diagnostic::FatalError`. Could not find `diagnostic` in `syntax` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:14         use syntax::diagnostic::FatalError;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:81:31: 81:66 note: in this expansion of panictry! (defined in .cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs)
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:22:30: 22:44 error: type name `ast::TokenTree` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:22                       tts: &[ast::TokenTree]) -> Box<MacResult + 'a> {
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:22:30: 22:44 help: you can import it into scope: `use syntax::tokenstream::TokenTree;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:28:9: 28:21 error: unresolved variant or struct `ExprLit` [E0531]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:28         ast::ExprLit(ref spanned) => {
^~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:30:17: 30:28 error: unresolved variant or struct `LitStr` [E0531]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs:30                 ast::LitStr(ref s, _) => s.to_string(),
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74:5: 86:6 error: method `make_impl_items` has an incompatible type for trait [E0053]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74     fn make_impl_items(self: Box<ParserAnyMacro<'a>>)
^
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74:5: 86:6 note: expected type `fn(Box<parser_any_macro::ParserAnyMacro<'a>>) -> std::option::Option<syntax::util::small_vector::SmallVector<syntax::ast::ImplItem>>` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74:5: 86:6 note:    found type `fn(Box<parser_any_macro::ParserAnyMacro<'a>>) -> std::option::Option<syntax::util::small_vector::SmallVector<syntax::ptr::P<syntax::ast::ImplItem>>>` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74:5: 86:6 note: expected struct `syntax::ast::ImplItem`, found struct `syntax::ptr::P` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:74     fn make_impl_items(self: Box<ParserAnyMacro<'a>>)
^
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88:5: 106:6 error: method `make_stmts` has an incompatible type for trait [E0053]
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88     fn make_stmts(self: Box<ParserAnyMacro<'a>>)
^
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88:5: 106:6 note: expected type `fn(Box<parser_any_macro::ParserAnyMacro<'a>>) -> std::option::Option<syntax::util::small_vector::SmallVector<syntax::ast::Stmt>>` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88:5: 106:6 note:    found type `fn(Box<parser_any_macro::ParserAnyMacro<'a>>) -> std::option::Option<syntax::util::small_vector::SmallVector<syntax::ptr::P<syntax::ast::Stmt>>>` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88:5: 106:6 note: expected struct `syntax::ast::Stmt`, found struct `syntax::ptr::P` 
.cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/parser_any_macro.rs:88     fn make_stmts(self: Box<ParserAnyMacro<'a>>)
^
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `string_to_expr v0.0.2`, intermediate artifacts can be found at `/home/cratesfyi/string_to_expr-0.0.2`,
cause: ChainedError {
error: Could not document `string_to_expr`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/string_to_expr-0.0.2/src/lib.rs --crate-name string_to_expr -o /home/cratesfyi/string_to_expr-0.0.2/doc -L dependency=/home/cratesfyi/string_to_expr-0.0.2/debug -L dependency=/home/cratesfyi/string_to_expr-0.0.2/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.