[INFO] crate eventd 0.3.2 is already in cache [INFO] checking eventd-0.3.2 against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] extracting crate eventd 0.3.2 into /workspace/builds/worker-0/source [INFO] validating manifest of crates.io crate eventd 0.3.2 on toolchain e4dba30b9b475d8750370c4dfb49b6541990904d [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate eventd 0.3.2 [INFO] finished tweaking crates.io crate eventd 0.3.2 [INFO] tweaked toml for crates.io crate eventd 0.3.2 written to /workspace/builds/worker-0/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-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" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 21ba5012398b117561425bd61d2527fdbf09f57c5b9b1f48b1f5d1922fa3621c [INFO] running `"docker" "start" "-a" "21ba5012398b117561425bd61d2527fdbf09f57c5b9b1f48b1f5d1922fa3621c"` [INFO] [stderr] Checking slab v0.4.2 [INFO] [stderr] Checking eventd v0.3.2 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:90:33 [INFO] [stderr] | [INFO] [stderr] 90 | $name$(< $lt >)? => Fn, [INFO] [stderr] | ^^ help: use `dyn`: `dyn Fn` [INFO] [stderr] ... [INFO] [stderr] 190 | / event!( [INFO] [stderr] 191 | | /// Sample event generated using `event!` macro. [INFO] [stderr] 192 | | ExampleEvent<'a> => Fn(x: u32, y: &str) + Sync + 'a [INFO] [stderr] 193 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:90:33 [INFO] [stderr] | [INFO] [stderr] 90 | $name$(< $lt >)? => Fn, [INFO] [stderr] | ^^ help: use `dyn`: `dyn Fn` [INFO] [stderr] ... [INFO] [stderr] 190 | / event!( [INFO] [stderr] 191 | | /// Sample event generated using `event!` macro. [INFO] [stderr] 192 | | ExampleEvent<'a> => Fn(x: u32, y: &str) + Sync + 'a [INFO] [stderr] 193 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:104:33 [INFO] [stderr] | [INFO] [stderr] 104 | $name$(< $lt >)? => FnMut, [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn FnMut` [INFO] [stderr] ... [INFO] [stderr] 202 | event!(MyEvent<'a> => FnMut(x: u8, borrowed: &str) + 'a); [INFO] [stderr] | --------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:104:33 [INFO] [stderr] | [INFO] [stderr] 104 | $name$(< $lt >)? => FnMut, [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn FnMut` [INFO] [stderr] ... [INFO] [stderr] 229 | event!(MyEvent<'a> => FnMut() + 'a); [INFO] [stderr] | ------------------------------------ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unused boxed `std::ops::Fn` trait object that must be used [INFO] [stderr] --> src/lib.rs:158:21 [INFO] [stderr] | [INFO] [stderr] 158 | self.handlers.remove(subscription.key); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 190 | / event!( [INFO] [stderr] 191 | | /// Sample event generated using `event!` macro. [INFO] [stderr] 192 | | ExampleEvent<'a> => Fn(x: u32, y: &str) + Sync + 'a [INFO] [stderr] 193 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: closures are lazy and do nothing unless called [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused boxed `std::ops::Fn` trait object that must be used [INFO] [stderr] --> src/lib.rs:158:21 [INFO] [stderr] | [INFO] [stderr] 158 | self.handlers.remove(subscription.key); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 190 | / event!( [INFO] [stderr] 191 | | /// Sample event generated using `event!` macro. [INFO] [stderr] 192 | | ExampleEvent<'a> => Fn(x: u32, y: &str) + Sync + 'a [INFO] [stderr] 193 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: closures are lazy and do nothing unless called [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unused boxed `std::ops::FnMut` trait object that must be used [INFO] [stderr] --> src/lib.rs:158:21 [INFO] [stderr] | [INFO] [stderr] 158 | self.handlers.remove(subscription.key); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 202 | event!(MyEvent<'a> => FnMut(x: u8, borrowed: &str) + 'a); [INFO] [stderr] | --------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: closures are lazy and do nothing unless called [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unused boxed `std::ops::FnMut` trait object that must be used [INFO] [stderr] --> src/lib.rs:158:21 [INFO] [stderr] | [INFO] [stderr] 158 | self.handlers.remove(subscription.key); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 229 | event!(MyEvent<'a> => FnMut() + 'a); [INFO] [stderr] | ------------------------------------ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: closures are lazy and do nothing unless called [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 6 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.88s [INFO] running `"docker" "inspect" "21ba5012398b117561425bd61d2527fdbf09f57c5b9b1f48b1f5d1922fa3621c"` [INFO] running `"docker" "rm" "-f" "21ba5012398b117561425bd61d2527fdbf09f57c5b9b1f48b1f5d1922fa3621c"` [INFO] [stdout] 21ba5012398b117561425bd61d2527fdbf09f57c5b9b1f48b1f5d1922fa3621c