[INFO] crate mioqu 0.1.0 is already in cache
[INFO] checking mioqu-0.1.0 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate mioqu 0.1.0 into /workspace/builds/worker-0/source
[INFO] validating manifest of crates.io crate mioqu 0.1.0 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate mioqu 0.1.0
[INFO] finished tweaking crates.io crate mioqu 0.1.0
[INFO] tweaked toml for crates.io crate mioqu 0.1.0 written to /workspace/builds/worker-0/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "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] f255002176549003b9942d94b516a8cb0c0596d31e291519c1965cdb74e99ff7
[INFO] running `"docker" "start" "-a" "f255002176549003b9942d94b516a8cb0c0596d31e291519c1965cdb74e99ff7"`
[INFO] [stderr]     Checking mio v0.7.0
[INFO] [stderr]     Checking mioqu v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `mio::NotifyError`
[INFO] [stderr]  --> src/result.rs:4:5
[INFO] [stderr]   |
[INFO] [stderr] 4 | use mio::NotifyError;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^^^ no `NotifyError` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `mio::EventSet`
[INFO] [stderr]  --> src/handler.rs:2:18
[INFO] [stderr]   |
[INFO] [stderr] 2 | use mio::{Token, EventSet};
[INFO] [stderr]   |                  ^^^^^^^^ no `EventSet` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `mio::EventSet`
[INFO] [stderr]  --> src/queue.rs:5:24
[INFO] [stderr]   |
[INFO] [stderr] 5 | use mio::{self, Token, EventSet};
[INFO] [stderr]   |                        ^^^^^^^^ no `EventSet` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `EventLoop` in crate `mio`
[INFO] [stderr]  --> src/queue.rs:9:39
[INFO] [stderr]   |
[INFO] [stderr] 9 | pub type EventLoop<H: Handler> = mio::EventLoop<Queue<H>>;
[INFO] [stderr]   |                                       ^^^^^^^^^ not found in `mio`
[INFO] [stderr]   |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]   |
[INFO] [stderr] 1 | use queue::EventLoop;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Handler` in crate `mio`
[INFO] [stderr]   --> src/queue.rs:16:23
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl<H: Handler> mio::Handler for Queue<H> {
[INFO] [stderr]    |                       ^^^^^^^ not found in `mio`
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use handler::Handler;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sender` in crate `mio`
[INFO] [stderr]    --> src/queue.rs:109:18
[INFO] [stderr]     |
[INFO] [stderr] 109 |     sender: mio::Sender<Message<H::Processor, H::Message, H::Response>>
[INFO] [stderr]     |                  ^^^^^^ not found in `mio`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use std::sync::mpsc::Sender;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sender` in crate `mio`
[INFO] [stderr]    --> src/queue.rs:150:17
[INFO] [stderr]     |
[INFO] [stderr] 150 |     Notify(mio::Sender<T>),
[INFO] [stderr]     |                 ^^^^^^ not found in `mio`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use std::sync::mpsc::Sender;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/queue.rs:127:12
[INFO] [stderr]     |
[INFO] [stderr] 127 |         Ok(try!(rx.recv()))
[INFO] [stderr]     |            ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 7 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0405, E0412, E0432.
[INFO] [stderr] For more information about an error, try `rustc --explain E0405`.
[INFO] [stderr] error: could not compile `mioqu`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0432]: unresolved import `mio::NotifyError`
[INFO] [stderr]  --> src/result.rs:4:5
[INFO] [stderr]   |
[INFO] [stderr] 4 | use mio::NotifyError;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^^^ no `NotifyError` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `mio::EventSet`
[INFO] [stderr]  --> src/handler.rs:2:18
[INFO] [stderr]   |
[INFO] [stderr] 2 | use mio::{Token, EventSet};
[INFO] [stderr]   |                  ^^^^^^^^ no `EventSet` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `mio::EventSet`
[INFO] [stderr]  --> src/queue.rs:5:24
[INFO] [stderr]   |
[INFO] [stderr] 5 | use mio::{self, Token, EventSet};
[INFO] [stderr]   |                        ^^^^^^^^ no `EventSet` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `EventLoop` in crate `mio`
[INFO] [stderr]  --> src/queue.rs:9:39
[INFO] [stderr]   |
[INFO] [stderr] 9 | pub type EventLoop<H: Handler> = mio::EventLoop<Queue<H>>;
[INFO] [stderr]   |                                       ^^^^^^^^^ not found in `mio`
[INFO] [stderr]   |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]   |
[INFO] [stderr] 1 | use queue::EventLoop;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Handler` in crate `mio`
[INFO] [stderr]   --> src/queue.rs:16:23
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl<H: Handler> mio::Handler for Queue<H> {
[INFO] [stderr]    |                       ^^^^^^^ not found in `mio`
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use handler::Handler;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sender` in crate `mio`
[INFO] [stderr]    --> src/queue.rs:109:18
[INFO] [stderr]     |
[INFO] [stderr] 109 |     sender: mio::Sender<Message<H::Processor, H::Message, H::Response>>
[INFO] [stderr]     |                  ^^^^^^ not found in `mio`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use std::sync::mpsc::Sender;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sender` in crate `mio`
[INFO] [stderr]    --> src/queue.rs:150:17
[INFO] [stderr]     |
[INFO] [stderr] 150 |     Notify(mio::Sender<T>),
[INFO] [stderr]     |                 ^^^^^^ not found in `mio`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use std::sync::mpsc::Sender;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/queue.rs:127:12
[INFO] [stderr]     |
[INFO] [stderr] 127 |         Ok(try!(rx.recv()))
[INFO] [stderr]     |            ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 7 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0405, E0412, E0432.
[INFO] [stderr] For more information about an error, try `rustc --explain E0405`.
[INFO] [stderr] error: could not compile `mioqu`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "f255002176549003b9942d94b516a8cb0c0596d31e291519c1965cdb74e99ff7"`
[INFO] running `"docker" "rm" "-f" "f255002176549003b9942d94b516a8cb0c0596d31e291519c1965cdb74e99ff7"`
[INFO] [stdout] f255002176549003b9942d94b516a8cb0c0596d31e291519c1965cdb74e99ff7
