[INFO] updating cached repository tinaun/futures-native-timers [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/tinaun/futures-native-timers [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/tinaun/futures-native-timers" "work/ex/beta-1.38-1/sources/1.37.0/gh/tinaun/futures-native-timers"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/tinaun/futures-native-timers'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/tinaun/futures-native-timers" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/tinaun/futures-native-timers"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/tinaun/futures-native-timers'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 4f37b8114f661af4a6dbfb2330ffa8295c118b22 [INFO] sha for GitHub repo tinaun/futures-native-timers: 4f37b8114f661af4a6dbfb2330ffa8295c118b22 [INFO] validating manifest of tinaun/futures-native-timers on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of tinaun/futures-native-timers on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing tinaun/futures-native-timers [INFO] finished frobbing tinaun/futures-native-timers [INFO] frobbed toml for tinaun/futures-native-timers written to work/ex/beta-1.38-1/sources/1.37.0/gh/tinaun/futures-native-timers/Cargo.toml [INFO] started frobbing tinaun/futures-native-timers [INFO] finished frobbing tinaun/futures-native-timers [INFO] frobbed toml for tinaun/futures-native-timers written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/tinaun/futures-native-timers/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing tinaun/futures-native-timers against beta-2019-08-13 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-0/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/tinaun/futures-native-timers:/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" "+beta-2019-08-13" "build" "--frozen"` [INFO] [stdout] ee397a4bfe682f1336c5b5f98c7164741ad096ade593a283533f72697d9fe270 [INFO] running `"docker" "start" "-a" "ee397a4bfe682f1336c5b5f98c7164741ad096ade593a283533f72697d9fe270"` [INFO] [stderr] Compiling futures-core-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling pin-utils v0.1.0-alpha.4 [INFO] [stderr] Compiling futures-io-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling winapi v0.3.7 [INFO] [stderr] Compiling futures-sink-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling futures-channel-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling futures-util-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling futures-executor-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling futures-preview v0.3.0-alpha.18 [INFO] [stderr] Compiling futures-native-timers v0.1.0 (/opt/crater/workdir) [INFO] [stderr] error: incorrect use of `await` [INFO] [stderr] --> src/lib.rs:175:21 [INFO] [stderr] | [INFO] [stderr] 175 | let _ = await!(Delay::new(Duration::from_millis(millis))); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `await` is a postfix operation: `Delay::new(Duration::from_millis(millis)).await` [INFO] [stderr] [INFO] [stderr] error: incorrect use of `await` [INFO] [stderr] --> src/lib.rs:188:29 [INFO] [stderr] | [INFO] [stderr] 188 | let v = await!(delay(i, (i * 10) as u64)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `await` is a postfix operation: `delay(i, (i * 10) as u64).await` [INFO] [stderr] [INFO] [stderr] error: incorrect use of `await` [INFO] [stderr] --> src/lib.rs:190:31 [INFO] [stderr] | [INFO] [stderr] 190 | let res = await!(send.send(v)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: `await` is a postfix operation: `send.send(v).await` [INFO] [stderr] [INFO] [stderr] error: incorrect use of `await` [INFO] [stderr] --> src/lib.rs:197:33 [INFO] [stderr] | [INFO] [stderr] 197 | while let Some(v) = await!(recv.next()) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: `await` is a postfix operation: `recv.next().await` [INFO] [stderr] [INFO] [stderr] error[E0557]: feature has been removed [INFO] [stderr] --> src/lib.rs:1:38 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(futures_api, async_await, await_macro)] [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] note: subsumed by `.await` syntax [INFO] [stderr] --> src/lib.rs:1:38 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(futures_api, 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(futures_api, async_await, await_macro)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0053]: method `poll` has an incompatible type for trait [INFO] [stderr] --> src/delay.rs:33:5 [INFO] [stderr] | [INFO] [stderr] 33 | fn poll(mut self: Pin<&mut Self>, lw: &Waker) -> Poll { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ in mutability [INFO] [stderr] | [INFO] [stderr] = note: expected type `fn(std::pin::Pin<&mut delay::Delay>, &mut std::task::Context<'_>) -> core::task::poll::Poll<()>` [INFO] [stderr] found type `fn(std::pin::Pin<&mut delay::Delay>, &std::task::Waker) -> core::task::poll::Poll<()>` [INFO] [stderr] [INFO] [stderr] error[E0053]: method `poll_next` has an incompatible type for trait [INFO] [stderr] --> src/interval.rs:27:5 [INFO] [stderr] | [INFO] [stderr] 27 | fn poll_next(mut self: Pin<&mut Self>, lw: &Waker) -> Poll> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ in mutability [INFO] [stderr] | [INFO] [stderr] = note: expected type `fn(std::pin::Pin<&mut interval::Interval>, &mut std::task::Context<'_>) -> core::task::poll::Poll>` [INFO] [stderr] found type `fn(std::pin::Pin<&mut interval::Interval>, &std::task::Waker) -> core::task::poll::Poll>` [INFO] [stderr] [INFO] [stderr] error[E0053]: method `poll` has an incompatible type for trait [INFO] [stderr] --> src/timeout.rs:45:5 [INFO] [stderr] | [INFO] [stderr] 45 | fn poll(mut self: Pin<&mut Self>, w: &Waker) -> Poll { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ in mutability [INFO] [stderr] | [INFO] [stderr] = note: expected type `fn(std::pin::Pin<&mut timeout::Timeout>, &mut std::task::Context<'_>) -> core::task::poll::Poll>` [INFO] [stderr] found type `fn(std::pin::Pin<&mut timeout::Timeout>, &std::task::Waker) -> core::task::poll::Poll>` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/timeout.rs:47:60 [INFO] [stderr] | [INFO] [stderr] 47 | if let Poll::Ready(_) = self.as_mut().delay().poll(w) { [INFO] [stderr] | ^ types differ in mutability [INFO] [stderr] | [INFO] [stderr] = note: expected type `&mut std::task::Context<'_>` [INFO] [stderr] found type `&std::task::Waker` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/timeout.rs:51:41 [INFO] [stderr] | [INFO] [stderr] 51 | self.as_mut().future().poll(w).map(Ok) [INFO] [stderr] | ^ types differ in mutability [INFO] [stderr] | [INFO] [stderr] = note: expected type `&mut std::task::Context<'_>` [INFO] [stderr] found type `&std::task::Waker` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'libc::unix::linux_like::linux::gnu::b64::x86_64::siginfo_t::_pad': Please leave a comment on https://github.com/rust-lang/libc/pull/1316 if you're using this field [INFO] [stderr] --> src/sys/linux.rs:51:21 [INFO] [stderr] | [INFO] [stderr] 51 | let raw_bytes = (*si)._pad; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error: aborting due to 11 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0053, E0308, E0554, E0557. [INFO] [stderr] For more information about an error, try `rustc --explain E0053`. [INFO] [stderr] error: Could not compile `futures-native-timers`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "ee397a4bfe682f1336c5b5f98c7164741ad096ade593a283533f72697d9fe270"` [INFO] running `"docker" "rm" "-f" "ee397a4bfe682f1336c5b5f98c7164741ad096ade593a283533f72697d9fe270"` [INFO] [stdout] ee397a4bfe682f1336c5b5f98c7164741ad096ade593a283533f72697d9fe270