[INFO] updating cached repository skade/hyper-http-proxy [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/skade/hyper-http-proxy [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/skade/hyper-http-proxy" "work/ex/beta-1.38-1/sources/1.37.0/gh/skade/hyper-http-proxy"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/skade/hyper-http-proxy'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/skade/hyper-http-proxy" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/skade/hyper-http-proxy"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/skade/hyper-http-proxy'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 769a704256a0ae186414d0e03a902605d5512bb6 [INFO] sha for GitHub repo skade/hyper-http-proxy: 769a704256a0ae186414d0e03a902605d5512bb6 [INFO] validating manifest of skade/hyper-http-proxy 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 skade/hyper-http-proxy 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 skade/hyper-http-proxy [INFO] finished frobbing skade/hyper-http-proxy [INFO] frobbed toml for skade/hyper-http-proxy written to work/ex/beta-1.38-1/sources/1.37.0/gh/skade/hyper-http-proxy/Cargo.toml [INFO] started frobbing skade/hyper-http-proxy [INFO] finished frobbing skade/hyper-http-proxy [INFO] frobbed toml for skade/hyper-http-proxy written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/skade/hyper-http-proxy/Cargo.toml [INFO] crate skade/hyper-http-proxy already has a lockfile, it will not be regenerated [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 skade/hyper-http-proxy 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-3/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/skade/hyper-http-proxy:/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] 5e151089e95db414ca373b0bcc07b1c2a9cc4031c04318a7e1f7f9d0a9e6c7bd [INFO] running `"docker" "start" "-a" "5e151089e95db414ca373b0bcc07b1c2a9cc4031c04318a7e1f7f9d0a9e6c7bd"` [INFO] [stderr] Compiling time v0.1.39 [INFO] [stderr] Compiling crossbeam-utils v0.3.2 [INFO] [stderr] Compiling net2 v0.2.33 [INFO] [stderr] Compiling bytes v0.4.9 [INFO] [stderr] Compiling want v0.0.6 [INFO] [stderr] Compiling crossbeam-epoch v0.4.3 [INFO] [stderr] Compiling mio v0.6.15 [INFO] [stderr] Compiling tokio-io v0.1.7 [INFO] [stderr] Compiling http v0.1.10 [INFO] [stderr] Compiling crossbeam-deque v0.3.1 [INFO] [stderr] Compiling tokio-threadpool v0.1.5 [INFO] [stderr] Compiling tokio-codec v0.1.0 [INFO] [stderr] Compiling tokio-reactor v0.1.3 [INFO] [stderr] Compiling tokio-tcp v0.1.1 [INFO] [stderr] Compiling tokio-udp v0.1.1 [INFO] [stderr] Compiling tokio-fs v0.1.3 [INFO] [stderr] Compiling tokio v0.1.7 [INFO] [stderr] Compiling h2 v0.1.12 [INFO] [stderr] Compiling hyper v0.12.7 [INFO] [stderr] Compiling hyper-http-proxy v0.2.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `service_fn` [INFO] [stderr] --> src/main.rs:6:22 [INFO] [stderr] | [INFO] [stderr] 6 | use hyper::service::{service_fn, Service}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/main.rs:16:19 [INFO] [stderr] | [INFO] [stderr] 16 | type BoxFut = Box, Error = hyper::Error> + Send>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = hyper::Error> + Send` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `Stream` [INFO] [stderr] --> src/main.rs:5:25 [INFO] [stderr] | [INFO] [stderr] 5 | use hyper::rt::{Future, Stream}; [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 40.17s [INFO] running `"docker" "inspect" "5e151089e95db414ca373b0bcc07b1c2a9cc4031c04318a7e1f7f9d0a9e6c7bd"` [INFO] running `"docker" "rm" "-f" "5e151089e95db414ca373b0bcc07b1c2a9cc4031c04318a7e1f7f9d0a9e6c7bd"` [INFO] [stdout] 5e151089e95db414ca373b0bcc07b1c2a9cc4031c04318a7e1f7f9d0a9e6c7bd [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-3/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/skade/hyper-http-proxy:/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" "test" "--frozen" "--no-run"` [INFO] [stdout] ddc337db9171511973626c4c71f38609b7b58e65e90a1556fceb0ee809d00855 [INFO] running `"docker" "start" "-a" "ddc337db9171511973626c4c71f38609b7b58e65e90a1556fceb0ee809d00855"` [INFO] [stderr] Compiling hyper-http-proxy v0.2.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused import: `service_fn` [INFO] [stderr] --> src/main.rs:6:22 [INFO] [stderr] | [INFO] [stderr] 6 | use hyper::service::{service_fn, Service}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/main.rs:16:19 [INFO] [stderr] | [INFO] [stderr] 16 | type BoxFut = Box, Error = hyper::Error> + Send>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future, Error = hyper::Error> + Send` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `Stream` [INFO] [stderr] --> src/main.rs:5:25 [INFO] [stderr] | [INFO] [stderr] 5 | use hyper::rt::{Future, Stream}; [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.24s [INFO] running `"docker" "inspect" "ddc337db9171511973626c4c71f38609b7b58e65e90a1556fceb0ee809d00855"` [INFO] running `"docker" "rm" "-f" "ddc337db9171511973626c4c71f38609b7b58e65e90a1556fceb0ee809d00855"` [INFO] [stdout] ddc337db9171511973626c4c71f38609b7b58e65e90a1556fceb0ee809d00855 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-3/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/skade/hyper-http-proxy:/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" "test" "--frozen"` [INFO] [stdout] 0b3fd6cc0a6f0eb775d46d641aa3b51688e45e62c54543fad937a56507181e93 [INFO] running `"docker" "start" "-a" "0b3fd6cc0a6f0eb775d46d641aa3b51688e45e62c54543fad937a56507181e93"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.18s [INFO] [stderr] Running /opt/crater/target/debug/deps/hyper_http_proxy-8cb788b722aa4f5e [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" "0b3fd6cc0a6f0eb775d46d641aa3b51688e45e62c54543fad937a56507181e93"` [INFO] running `"docker" "rm" "-f" "0b3fd6cc0a6f0eb775d46d641aa3b51688e45e62c54543fad937a56507181e93"` [INFO] [stdout] 0b3fd6cc0a6f0eb775d46d641aa3b51688e45e62c54543fad937a56507181e93