[INFO] updating cached repository https://github.com/natir/ssik [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] [stderr] From https://github.com/natir/ssik [INFO] [stderr] 87e812b..20838e7 master -> master [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 20838e7d5ed11595c8de21c655e0503738027b79 [INFO] testing natir/ssik against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fnatir%2Fssik" "work/builds/worker-2/source"` [INFO] [stderr] Cloning into 'work/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/natir/ssik on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/natir/ssik [INFO] finished tweaking git repo https://github.com/natir/ssik [INFO] tweaked toml for git repo https://github.com/natir/ssik written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/natir/ssik already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 31250f6c2eb80041b7596e9882c33c4d51549b6fee8328a8522b29d548a14b32 [INFO] running `"docker" "start" "-a" "31250f6c2eb80041b7596e9882c33c4d51549b6fee8328a8522b29d548a14b32"` [INFO] [stderr] Compiling serde v1.0.85 [INFO] [stderr] Compiling ndarray v0.9.1 [INFO] [stderr] Compiling bv v0.7.4 [INFO] [stderr] Compiling bytecount v0.3.2 [INFO] [stderr] Compiling custom_derive v0.1.7 [INFO] [stderr] Compiling crossbeam-utils v0.6.5 [INFO] [stderr] Compiling itertools v0.6.5 [INFO] [stderr] Compiling newtype_derive v0.1.6 [INFO] [stderr] Compiling rand v0.5.6 [INFO] [stderr] Compiling crossbeam-epoch v0.5.2 [INFO] [stderr] Compiling slice-deque v0.1.16 [INFO] [stderr] Compiling num-complex v0.1.43 [INFO] [stderr] Compiling itertools-num v0.1.3 [INFO] [stderr] Compiling csv-core v0.1.5 [INFO] [stderr] Compiling fxhash v0.2.1 [INFO] [stderr] Compiling ordered-float v0.5.2 [INFO] [stderr] Compiling regex v0.2.11 [INFO] [stderr] Compiling crossbeam-deque v0.5.2 [INFO] [stderr] Compiling crossbeam-epoch v0.6.1 [INFO] [stderr] Compiling buf_redux v0.7.1 [INFO] [stderr] Compiling parking_lot_core v0.3.1 [INFO] [stderr] Compiling parking_lot v0.6.4 [INFO] [stderr] Compiling crossbeam-channel v0.2.6 [INFO] [stderr] Compiling crossbeam v0.4.1 [INFO] [stderr] Compiling vec_map v0.8.1 [INFO] [stderr] Compiling csv v1.0.5 [INFO] [stderr] Compiling multimap v0.4.0 [INFO] [stderr] Compiling seq_io v0.3.0 [INFO] [stderr] Compiling clap v2.32.0 [INFO] [stderr] Compiling bio v0.21.0 [INFO] [stderr] Compiling ssik v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> src/main.rs:22:1 [INFO] [stderr] | [INFO] [stderr] 22 | #![feature(stdsimd)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/counter.rs:165:26 [INFO] [stderr] | [INFO] [stderr] 165 | pub counter: &'a mut Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Counter` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/counter.rs:172:33 [INFO] [stderr] | [INFO] [stderr] 172 | pub fn new(counter: &'a mut Counter, k: u8) -> Self { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:30:25 [INFO] [stderr] | [INFO] [stderr] 30 | pub fn write(count: &counter::Counter, output_path: &str, k: u8, mode: Mode) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:52:17 [INFO] [stderr] | [INFO] [stderr] 52 | count: &counter::Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:75:17 [INFO] [stderr] | [INFO] [stderr] 75 | count: &counter::Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:86:17 [INFO] [stderr] | [INFO] [stderr] 86 | count: &counter::Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:106:17 [INFO] [stderr] | [INFO] [stderr] 106 | count: &counter::Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/write.rs:141:17 [INFO] [stderr] | [INFO] [stderr] 141 | count: &counter::Counter, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn counter::Counter` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `ssik`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "31250f6c2eb80041b7596e9882c33c4d51549b6fee8328a8522b29d548a14b32"` [INFO] running `"docker" "rm" "-f" "31250f6c2eb80041b7596e9882c33c4d51549b6fee8328a8522b29d548a14b32"` [INFO] [stdout] 31250f6c2eb80041b7596e9882c33c4d51549b6fee8328a8522b29d548a14b32