[INFO] updating cached repository https://github.com/Hoverbear/fun_with_futures [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] f38c3217ee90ed003259aa2d331372bf5e80608e [INFO] testing Hoverbear/fun_with_futures against 1.38.0 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FHoverbear%2Ffun_with_futures" "work/builds/worker-11/source"` [INFO] [stderr] Cloning into 'work/builds/worker-11/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/Hoverbear/fun_with_futures on toolchain 1.38.0 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/Hoverbear/fun_with_futures [INFO] finished tweaking git repo https://github.com/Hoverbear/fun_with_futures [INFO] tweaked toml for git repo https://github.com/Hoverbear/fun_with_futures written to work/builds/worker-11/source/Cargo.toml [INFO] crate git repo https://github.com/Hoverbear/fun_with_futures already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-11/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" "+1.38.0" "build" "--frozen"` [INFO] [stdout] 4156f6237de0fbdd7c30e530ae530bdd02639b72bb0eb4ef23c087ee78fe922a [INFO] running `"docker" "start" "-a" "4156f6237de0fbdd7c30e530ae530bdd02639b72bb0eb4ef23c087ee78fe922a"` [INFO] [stderr] Compiling tokio-service v0.1.0 [INFO] [stderr] Compiling futures-cpupool v0.1.3 [INFO] [stderr] Compiling tokio-core v0.1.4 [INFO] [stderr] Compiling tokio-proto v0.1.0 [INFO] [stderr] Compiling fun_with_futures v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.68s [INFO] running `"docker" "inspect" "4156f6237de0fbdd7c30e530ae530bdd02639b72bb0eb4ef23c087ee78fe922a"` [INFO] running `"docker" "rm" "-f" "4156f6237de0fbdd7c30e530ae530bdd02639b72bb0eb4ef23c087ee78fe922a"` [INFO] [stdout] 4156f6237de0fbdd7c30e530ae530bdd02639b72bb0eb4ef23c087ee78fe922a [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-11/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" "+1.38.0" "test" "--frozen" "--no-run"` [INFO] [stdout] a66a699b0511d94f46a886e0007e57a7ef1740065903330e174d150ef049635f [INFO] running `"docker" "start" "-a" "a66a699b0511d94f46a886e0007e57a7ef1740065903330e174d150ef049635f"` [INFO] [stderr] Compiling fun_with_futures v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused variable: `url` [INFO] [stderr] --> examples/10-tokio-codec-http.rs:103:36 [INFO] [stderr] | [INFO] [stderr] 103 | ExampleRequest::Get { url: url } => { [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_url` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `url` [INFO] [stderr] --> examples/10-tokio-codec-http.rs:106:37 [INFO] [stderr] | [INFO] [stderr] 106 | ExampleRequest::Post { url: url, content: content } => { [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_url` [INFO] [stderr] [INFO] [stderr] warning: the `url:` in this pattern is redundant [INFO] [stderr] --> examples/10-tokio-codec-http.rs:103:31 [INFO] [stderr] | [INFO] [stderr] 103 | ExampleRequest::Get { url: url } => { [INFO] [stderr] | ----^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_shorthand_field_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: the `url:` in this pattern is redundant [INFO] [stderr] --> examples/10-tokio-codec-http.rs:106:32 [INFO] [stderr] | [INFO] [stderr] 106 | ExampleRequest::Post { url: url, content: content } => { [INFO] [stderr] | ----^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] [INFO] [stderr] warning: the `content:` in this pattern is redundant [INFO] [stderr] --> examples/10-tokio-codec-http.rs:106:42 [INFO] [stderr] | [INFO] [stderr] 106 | ExampleRequest::Post { url: url, content: content } => { [INFO] [stderr] | --------^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] [INFO] [stderr] warning: the `url:` in this pattern is redundant [INFO] [stderr] --> examples/11-tokio-full.rs:151:35 [INFO] [stderr] | [INFO] [stderr] 151 | ExampleRequest::Get { url: url } => { [INFO] [stderr] | ----^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_shorthand_field_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: the `url:` in this pattern is redundant [INFO] [stderr] --> examples/11-tokio-full.rs:157:36 [INFO] [stderr] | [INFO] [stderr] 157 | ExampleRequest::Post { url: url, content: content } => { [INFO] [stderr] | ----^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] [INFO] [stderr] warning: the `content:` in this pattern is redundant [INFO] [stderr] --> examples/11-tokio-full.rs:157:46 [INFO] [stderr] | [INFO] [stderr] 157 | ExampleRequest::Post { url: url, content: content } => { [INFO] [stderr] | --------^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.83s [INFO] running `"docker" "inspect" "a66a699b0511d94f46a886e0007e57a7ef1740065903330e174d150ef049635f"` [INFO] running `"docker" "rm" "-f" "a66a699b0511d94f46a886e0007e57a7ef1740065903330e174d150ef049635f"` [INFO] [stdout] a66a699b0511d94f46a886e0007e57a7ef1740065903330e174d150ef049635f [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-11/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" "+1.38.0" "test" "--frozen"` [INFO] [stdout] 447150937cddeea86dc7dd0af0404950e73d424eced53e35b49f225332299085 [INFO] running `"docker" "start" "-a" "447150937cddeea86dc7dd0af0404950e73d424eced53e35b49f225332299085"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.09s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/fun_with_futures-2560d3e6fcace821 [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Doc-tests fun_with_futures [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "447150937cddeea86dc7dd0af0404950e73d424eced53e35b49f225332299085"` [INFO] running `"docker" "rm" "-f" "447150937cddeea86dc7dd0af0404950e73d424eced53e35b49f225332299085"` [INFO] [stdout] 447150937cddeea86dc7dd0af0404950e73d424eced53e35b49f225332299085