[INFO] updating cached repository https://github.com/dannysu/rust-thrift-example [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] 92ef6cc12f5f422c11e5ef061f202b81cfd55517 [INFO] testing dannysu/rust-thrift-example against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdannysu%2Frust-thrift-example" "work/builds/worker-2/source"` [INFO] [stderr] Cloning into 'work/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/dannysu/rust-thrift-example on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/dannysu/rust-thrift-example [INFO] finished tweaking git repo https://github.com/dannysu/rust-thrift-example [INFO] tweaked toml for git repo https://github.com/dannysu/rust-thrift-example written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/dannysu/rust-thrift-example already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/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" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 447c0a2d9859c0a07649e8af2b89d254394eeac65b5910bc8254c89ff0fa4f9c [INFO] running `"docker" "start" "-a" "447c0a2d9859c0a07649e8af2b89d254394eeac65b5910bc8254c89ff0fa4f9c"` [INFO] [stderr] Compiling integer-encoding v1.0.5 [INFO] [stderr] Compiling try_from v0.2.2 [INFO] [stderr] Compiling rust-thrift-example v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] Compiling try_from v0.3.2 [INFO] [stderr] Compiling threadpool v1.7.1 [INFO] [stderr] Compiling thrift v0.12.0 [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:56:36 [INFO] [stderr] | [INFO] [stderr] 56 | fn i_prot_mut(&mut self) -> &mut TInputProtocol { &mut self._i_prot } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:57:36 [INFO] [stderr] | [INFO] [stderr] 57 | fn o_prot_mut(&mut self) -> &mut TOutputProtocol { &mut self._o_prot } [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:112:71 [INFO] [stderr] | [INFO] [stderr] 112 | fn process_hello(&self, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:112:100 [INFO] [stderr] | [INFO] [stderr] 112 | fn process_hello(&self, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:120:111 [INFO] [stderr] | [INFO] [stderr] 120 | pub fn process_hello(handler: &H, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:120:140 [INFO] [stderr] | [INFO] [stderr] 120 | pub fn process_hello(handler: &H, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:160:34 [INFO] [stderr] | [INFO] [stderr] 160 | fn process(&self, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:160:63 [INFO] [stderr] | [INFO] [stderr] 160 | fn process(&self, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:191:41 [INFO] [stderr] | [INFO] [stderr] 191 | fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:218:48 [INFO] [stderr] | [INFO] [stderr] 218 | fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:239:41 [INFO] [stderr] | [INFO] [stderr] 239 | fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:265:48 [INFO] [stderr] | [INFO] [stderr] 265 | fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.82s [INFO] running `"docker" "inspect" "447c0a2d9859c0a07649e8af2b89d254394eeac65b5910bc8254c89ff0fa4f9c"` [INFO] running `"docker" "rm" "-f" "447c0a2d9859c0a07649e8af2b89d254394eeac65b5910bc8254c89ff0fa4f9c"` [INFO] [stdout] 447c0a2d9859c0a07649e8af2b89d254394eeac65b5910bc8254c89ff0fa4f9c [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/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" "+beta-2019-09-28" "test" "--frozen" "--no-run"` [INFO] [stdout] 1d8f475616b389c82a8bf50834c226c6405e0996443f17be68a48ab0bdafb708 [INFO] running `"docker" "start" "-a" "1d8f475616b389c82a8bf50834c226c6405e0996443f17be68a48ab0bdafb708"` [INFO] [stderr] Compiling rust-thrift-example v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:56:36 [INFO] [stderr] | [INFO] [stderr] 56 | fn i_prot_mut(&mut self) -> &mut TInputProtocol { &mut self._i_prot } [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:57:36 [INFO] [stderr] | [INFO] [stderr] 57 | fn o_prot_mut(&mut self) -> &mut TOutputProtocol { &mut self._o_prot } [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:112:71 [INFO] [stderr] | [INFO] [stderr] 112 | fn process_hello(&self, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:112:100 [INFO] [stderr] | [INFO] [stderr] 112 | fn process_hello(&self, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:120:111 [INFO] [stderr] | [INFO] [stderr] 120 | pub fn process_hello(handler: &H, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:120:140 [INFO] [stderr] | [INFO] [stderr] 120 | pub fn process_hello(handler: &H, incoming_sequence_number: i32, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:160:34 [INFO] [stderr] | [INFO] [stderr] 160 | fn process(&self, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:160:63 [INFO] [stderr] | [INFO] [stderr] 160 | fn process(&self, i_prot: &mut TInputProtocol, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:191:41 [INFO] [stderr] | [INFO] [stderr] 191 | fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:218:48 [INFO] [stderr] | [INFO] [stderr] 218 | fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:239:41 [INFO] [stderr] | [INFO] [stderr] 239 | fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/example_service.rs:265:48 [INFO] [stderr] | [INFO] [stderr] 265 | fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.53s [INFO] running `"docker" "inspect" "1d8f475616b389c82a8bf50834c226c6405e0996443f17be68a48ab0bdafb708"` [INFO] running `"docker" "rm" "-f" "1d8f475616b389c82a8bf50834c226c6405e0996443f17be68a48ab0bdafb708"` [INFO] [stdout] 1d8f475616b389c82a8bf50834c226c6405e0996443f17be68a48ab0bdafb708 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/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" "+beta-2019-09-28" "test" "--frozen"` [INFO] [stdout] 46100378a6cc4195b8f19b4b73253f6b0c51c4532b1fb45dda5a543c9cbc3017 [INFO] running `"docker" "start" "-a" "46100378a6cc4195b8f19b4b73253f6b0c51c4532b1fb45dda5a543c9cbc3017"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/rust_thrift_example-4a70f6d053e769ee [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] Running /opt/rustwide/target/debug/deps/client-410a72e5135ff835 [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] Running /opt/rustwide/target/debug/deps/server-58648cdf5008d507 [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 rust-thrift-example [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" "46100378a6cc4195b8f19b4b73253f6b0c51c4532b1fb45dda5a543c9cbc3017"` [INFO] running `"docker" "rm" "-f" "46100378a6cc4195b8f19b4b73253f6b0c51c4532b1fb45dda5a543c9cbc3017"` [INFO] [stdout] 46100378a6cc4195b8f19b4b73253f6b0c51c4532b1fb45dda5a543c9cbc3017