[INFO] crate jsx 0.1.0 is already in cache [INFO] extracting crate jsx 0.1.0 into work/ex/beta-1.37-6/sources/1.36.0/reg/jsx/0.1.0 [INFO] extracting crate jsx 0.1.0 into work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/jsx/0.1.0 [INFO] validating manifest of jsx-0.1.0 on toolchain 1.36.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of jsx-0.1.0 on toolchain beta-2019-07-23 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing jsx-0.1.0 [INFO] finished frobbing jsx-0.1.0 [INFO] frobbed toml for jsx-0.1.0 written to work/ex/beta-1.37-6/sources/1.36.0/reg/jsx/0.1.0/Cargo.toml [INFO] started frobbing jsx-0.1.0 [INFO] finished frobbing jsx-0.1.0 [INFO] frobbed toml for jsx-0.1.0 written to work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/jsx/0.1.0/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing jsx-0.1.0 against 1.36.0 for beta-1.37-6 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-0/1.36.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/1.36.0/reg/jsx/0.1.0:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.36.0" "build" "--frozen"` [INFO] [stdout] a0cf9520a629dc890e94f5668a2b9959277e7b15edb4c4dea56aa2afdb8a590f [INFO] running `"docker" "start" "-a" "a0cf9520a629dc890e94f5668a2b9959277e7b15edb4c4dea56aa2afdb8a590f"` [INFO] [stderr] Compiling jsx v0.1.0 (/opt/crater/workdir) [INFO] [stderr] error[E0557]: feature has been removed [INFO] [stderr] --> src/lib.rs:3:45 [INFO] [stderr] | [INFO] [stderr] 3 | #![feature(plugin_registrar, rustc_private, quote)] [INFO] [stderr] | ^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `syntax::codemap` [INFO] [stderr] --> src/lib.rs:8:13 [INFO] [stderr] | [INFO] [stderr] 8 | use syntax::codemap::{Span, Spanned}; [INFO] [stderr] | ^^^^^^^ could not find `codemap` in `syntax` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved imports `syntax::ast::TokenTree`, `syntax::ast::PathParameters` [INFO] [stderr] --> src/lib.rs:9:19 [INFO] [stderr] | [INFO] [stderr] 9 | use syntax::ast::{TokenTree, Ident, PathSegment, PathParameters, Path, Field}; [INFO] [stderr] | ^^^^^^^^^ ^^^^^^^^^^^^^^ no `PathParameters` in `ast` [INFO] [stderr] | | [INFO] [stderr] | no `TokenTree` in `ast` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `syntax::parse::token::intern` [INFO] [stderr] --> src/lib.rs:12:35 [INFO] [stderr] | [INFO] [stderr] 12 | use syntax::parse::token::{Token, intern}; [INFO] [stderr] | ^^^^^^ no `intern` in `parse::token` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `rustc::plugin` [INFO] [stderr] --> src/lib.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | use rustc::plugin::Registry; [INFO] [stderr] | ^^^^^^ could not find `plugin` in `rustc` [INFO] [stderr] [INFO] [stderr] error: cannot find macro `quote_expr!` in this scope [INFO] [stderr] --> src/lib.rs:69:22 [INFO] [stderr] | [INFO] [stderr] 69 | let expression = quote_expr!(cx, $val.to_string()); [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: #![feature] may not be used on the stable release channel [INFO] [stderr] --> src/lib.rs:3:1 [INFO] [stderr] | [INFO] [stderr] 3 | #![feature(plugin_registrar, rustc_private, quote)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/lib.rs:53:46 [INFO] [stderr] | [INFO] [stderr] 53 | Token::Ident(ident, _) => Ok(ident), [INFO] [stderr] | ^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected struct `syntax::ast::Ident`, found reference [INFO] [stderr] | help: consider dereferencing the borrow: `*ident` [INFO] [stderr] | [INFO] [stderr] = note: expected type `syntax::ast::Ident` [INFO] [stderr] found type `&syntax::ast::Ident` [INFO] [stderr] [INFO] [stderr] error[E0560]: struct `syntax::ast::PathSegment` has no field named `identifier` [INFO] [stderr] --> src/lib.rs:63:38 [INFO] [stderr] | [INFO] [stderr] 63 | let name_segment = PathSegment { identifier: identifier, parameters: PathParameters::none() }; [INFO] [stderr] | ^^^^^^^^^^ `syntax::ast::PathSegment` does not have this field [INFO] [stderr] | [INFO] [stderr] = note: available fields are: `ident`, `id`, `args` [INFO] [stderr] [INFO] [stderr] error[E0560]: struct `syntax::ast::PathSegment` has no field named `parameters` [INFO] [stderr] --> src/lib.rs:63:62 [INFO] [stderr] | [INFO] [stderr] 63 | let name_segment = PathSegment { identifier: identifier, parameters: PathParameters::none() }; [INFO] [stderr] | ^^^^^^^^^^ `syntax::ast::PathSegment` does not have this field [INFO] [stderr] | [INFO] [stderr] = note: available fields are: `ident`, `id`, `args` [INFO] [stderr] [INFO] [stderr] error[E0560]: struct `syntax::ast::Path` has no field named `global` [INFO] [stderr] --> src/lib.rs:64:23 [INFO] [stderr] | [INFO] [stderr] 64 | Path { span: *sp, global: false, segments: vec![name_segment] } [INFO] [stderr] | ^^^^^^ `syntax::ast::Path` does not have this field [INFO] [stderr] | [INFO] [stderr] = note: available fields are: `span`, `segments` [INFO] [stderr] [INFO] [stderr] error[E0063]: missing fields `attrs`, `is_shorthand` in initializer of `syntax::ast::Field` [INFO] [stderr] --> src/lib.rs:70:5 [INFO] [stderr] | [INFO] [stderr] 70 | Field { ident: identifier, expr: expression, span: *sp } [INFO] [stderr] | ^^^^^ missing `attrs`, `is_shorthand` [INFO] [stderr] [INFO] [stderr] error: aborting due to 12 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0063, E0308, E0432, E0554, E0557, E0560. [INFO] [stderr] For more information about an error, try `rustc --explain E0063`. [INFO] [stderr] error: Could not compile `jsx`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "a0cf9520a629dc890e94f5668a2b9959277e7b15edb4c4dea56aa2afdb8a590f"` [INFO] running `"docker" "rm" "-f" "a0cf9520a629dc890e94f5668a2b9959277e7b15edb4c4dea56aa2afdb8a590f"` [INFO] [stdout] a0cf9520a629dc890e94f5668a2b9959277e7b15edb4c4dea56aa2afdb8a590f