[INFO] updating cached repository https://github.com/elpiel/repository-trait-rs [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] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] be3d6be55f1ca61c97fd7421795b2dfa55a7204a [INFO] testing elpiel/repository-trait-rs against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Felpiel%2Frepository-trait-rs" "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/elpiel/repository-trait-rs 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/elpiel/repository-trait-rs [INFO] finished tweaking git repo https://github.com/elpiel/repository-trait-rs [INFO] tweaked toml for git repo https://github.com/elpiel/repository-trait-rs written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/elpiel/repository-trait-rs 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] 846102389c2081bcf5cc8df9ce34d9dadb762f34731c3e4a4329b0847b8bdc3f [INFO] running `"docker" "start" "-a" "846102389c2081bcf5cc8df9ce34d9dadb762f34731c3e4a4329b0847b8bdc3f"` [INFO] [stderr] Compiling syn v0.15.34 [INFO] [stderr] Compiling try_future v0.1.3 [INFO] [stderr] Compiling tokio-io v0.1.12 [INFO] [stderr] Compiling mio v0.6.16 [INFO] [stderr] Compiling crypto-mac v0.7.0 [INFO] [stderr] Compiling chrono v0.4.6 [INFO] [stderr] Compiling bb8 v0.3.0 [INFO] [stderr] Compiling parking_lot_core v0.4.0 [INFO] [stderr] Compiling tokio-threadpool v0.1.14 [INFO] [stderr] Compiling hmac v0.7.0 [INFO] [stderr] Compiling postgres-protocol v0.4.0 [INFO] [stderr] Compiling parking_lot v0.7.1 [INFO] [stderr] Compiling tokio-codec v0.1.1 [INFO] [stderr] Compiling futures-util-preview v0.3.0-alpha.16 [INFO] [stderr] Compiling mio-uds v0.6.7 [INFO] [stderr] Compiling tokio-reactor v0.1.9 [INFO] [stderr] Compiling tokio-fs v0.1.6 [INFO] [stderr] Compiling tokio-uds v0.2.5 [INFO] [stderr] Compiling tokio-tcp v0.1.3 [INFO] [stderr] Compiling tokio-udp v0.1.3 [INFO] [stderr] Compiling tokio v0.1.19 [INFO] [stderr] Compiling futures-executor-preview v0.3.0-alpha.16 [INFO] [stderr] Compiling futures-preview v0.3.0-alpha.16 [INFO] [stderr] Compiling darling_core v0.8.6 [INFO] [stderr] Compiling darling_macro v0.8.6 [INFO] [stderr] Compiling darling v0.8.6 [INFO] [stderr] Compiling derive_state_machine_future v0.2.0 [INFO] [stderr] Compiling state_machine_future v0.2.0 [INFO] [stderr] Compiling tokio-postgres v0.4.0-rc.2 [INFO] [stderr] Compiling bb8-postgres v0.3.0 [INFO] [stderr] Compiling repository v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0557]: feature has been removed [INFO] [stderr] --> src/lib.rs:1:25 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(async_await, await_macro)] [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] note: subsumed by `.await` syntax [INFO] [stderr] --> src/lib.rs:1:25 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(async_await, await_macro)] [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> src/lib.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(async_await, await_macro)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/domain.rs:9:40 [INFO] [stderr] | [INFO] [stderr] 9 | pub type RepositoryFuture = Pin> + Send>>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future> + Send` [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/application/handler.rs:9:40 [INFO] [stderr] | [INFO] [stderr] 9 | pub fn new(channel_repository: &'a ChannelRepository) -> Self { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ChannelRepository` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0554, E0557. [INFO] [stderr] For more information about an error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `repository`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "846102389c2081bcf5cc8df9ce34d9dadb762f34731c3e4a4329b0847b8bdc3f"` [INFO] running `"docker" "rm" "-f" "846102389c2081bcf5cc8df9ce34d9dadb762f34731c3e4a4329b0847b8bdc3f"` [INFO] [stdout] 846102389c2081bcf5cc8df9ce34d9dadb762f34731c3e4a4329b0847b8bdc3f