[INFO] fetching crate plugkit 0.0.9... [INFO] testing plugkit-0.0.9 against 1.59.0 for beta-1.60-1 [INFO] extracting crate plugkit 0.0.9 into /workspace/builds/worker-46/source [INFO] validating manifest of crates.io crate plugkit 0.0.9 on toolchain 1.59.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.59.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate plugkit 0.0.9 [INFO] finished tweaking crates.io crate plugkit 0.0.9 [INFO] tweaked toml for crates.io crate plugkit 0.0.9 written to /workspace/builds/worker-46/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.59.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.59.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+1.59.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] e3b474192b525794283f69a714625e1b87236675669bd54061c9e72f54927589 [INFO] running `Command { std: "docker" "start" "-a" "e3b474192b525794283f69a714625e1b87236675669bd54061c9e72f54927589", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "e3b474192b525794283f69a714625e1b87236675669bd54061c9e72f54927589", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e3b474192b525794283f69a714625e1b87236675669bd54061c9e72f54927589", kill_on_drop: false }` [INFO] [stdout] e3b474192b525794283f69a714625e1b87236675669bd54061c9e72f54927589 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/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" "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" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+1.59.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 6a4ce2fe7a56506e0cc6f4c6d2ff2328389a223ff1cbb358f55608b3ff760f60 [INFO] running `Command { std: "docker" "start" "-a" "6a4ce2fe7a56506e0cc6f4c6d2ff2328389a223ff1cbb358f55608b3ff760f60", kill_on_drop: false }` [INFO] [stderr] Compiling libc v0.2.119 [INFO] [stderr] Compiling byteorder v1.4.3 [INFO] [stderr] Compiling plugkit v0.0.9 (/opt/rustwide/workdir) [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/variant.rs:81:23 [INFO] [stdout] | [INFO] [stdout] 81 | fn set(&mut self, &T); [INFO] [stdout] | ^^ help: try naming the parameter or explicitly ignoring it: `_: &T` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/layer.rs:49:35 [INFO] [stdout] | [INFO] [stdout] 49 | pub fn payloads(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 49 - pub fn payloads(&self) -> Box> { [INFO] [stdout] 49 + pub fn payloads(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/payload.rs:29:33 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn slices(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 29 - pub fn slices(&self) -> Box> { [INFO] [stdout] 29 + pub fn slices(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:108:15 [INFO] [stdout] | [INFO] [stdout] 108 | _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 108 - _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] 108 + _cb: &dyn Fn(&mut Context, usize, f64), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:123:15 [INFO] [stdout] | [INFO] [stdout] 123 | _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 123 - _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] 123 + _cb: &dyn Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: getting the inner pointer of a temporary `CString` [INFO] [stdout] --> src/logger.rs:33:40 [INFO] [stdout] | [INFO] [stdout] 33 | CString::new(msg).unwrap().as_ptr(), [INFO] [stdout] | -------------------------- ^^^^^^ this pointer will be invalid [INFO] [stdout] | | [INFO] [stdout] | this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(temporary_cstring_as_ptr)]` on by default [INFO] [stdout] = note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned [INFO] [stdout] = help: for more information, see https://doc.rust-lang.org/reference/destructors.html [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.68s [INFO] running `Command { std: "docker" "inspect" "6a4ce2fe7a56506e0cc6f4c6d2ff2328389a223ff1cbb358f55608b3ff760f60", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "6a4ce2fe7a56506e0cc6f4c6d2ff2328389a223ff1cbb358f55608b3ff760f60", kill_on_drop: false }` [INFO] [stdout] 6a4ce2fe7a56506e0cc6f4c6d2ff2328389a223ff1cbb358f55608b3ff760f60 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/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" "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" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+1.59.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 8e35b9b7c7878c3c1a674aa667d6a4456b1bfea9fbcc86ecdc45f78c75e8383f [INFO] running `Command { std: "docker" "start" "-a" "8e35b9b7c7878c3c1a674aa667d6a4456b1bfea9fbcc86ecdc45f78c75e8383f", kill_on_drop: false }` [INFO] [stderr] Compiling plugkit v0.0.9 (/opt/rustwide/workdir) [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/variant.rs:81:23 [INFO] [stdout] | [INFO] [stdout] 81 | fn set(&mut self, &T); [INFO] [stdout] | ^^ help: try naming the parameter or explicitly ignoring it: `_: &T` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/layer.rs:49:35 [INFO] [stdout] | [INFO] [stdout] 49 | pub fn payloads(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 49 - pub fn payloads(&self) -> Box> { [INFO] [stdout] 49 + pub fn payloads(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/payload.rs:29:33 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn slices(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 29 - pub fn slices(&self) -> Box> { [INFO] [stdout] 29 + pub fn slices(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:108:15 [INFO] [stdout] | [INFO] [stdout] 108 | _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 108 - _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] 108 + _cb: &dyn Fn(&mut Context, usize, f64), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:123:15 [INFO] [stdout] | [INFO] [stdout] 123 | _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 123 - _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] 123 + _cb: &dyn Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: getting the inner pointer of a temporary `CString` [INFO] [stdout] --> src/logger.rs:33:40 [INFO] [stdout] | [INFO] [stdout] 33 | CString::new(msg).unwrap().as_ptr(), [INFO] [stdout] | -------------------------- ^^^^^^ this pointer will be invalid [INFO] [stdout] | | [INFO] [stdout] | this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(temporary_cstring_as_ptr)]` on by default [INFO] [stdout] = note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned [INFO] [stdout] = help: for more information, see https://doc.rust-lang.org/reference/destructors.html [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stdout] --> src/variant.rs:81:23 [INFO] [stdout] | [INFO] [stdout] 81 | fn set(&mut self, &T); [INFO] [stdout] | ^^ help: try naming the parameter or explicitly ignoring it: `_: &T` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/layer.rs:49:35 [INFO] [stdout] | [INFO] [stdout] 49 | pub fn payloads(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 49 - pub fn payloads(&self) -> Box> { [INFO] [stdout] 49 + pub fn payloads(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/payload.rs:29:33 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn slices(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 29 - pub fn slices(&self) -> Box> { [INFO] [stdout] 29 + pub fn slices(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:108:15 [INFO] [stdout] | [INFO] [stdout] 108 | _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 108 - _cb: &Fn(&mut Context, usize, f64), [INFO] [stdout] 108 + _cb: &dyn Fn(&mut Context, usize, f64), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/file.rs:123:15 [INFO] [stdout] | [INFO] [stdout] 123 | _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 123 - _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] 123 + _cb: &dyn Fn(&mut Context) -> &[RawFrame], [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: getting the inner pointer of a temporary `CString` [INFO] [stdout] --> src/logger.rs:33:40 [INFO] [stdout] | [INFO] [stdout] 33 | CString::new(msg).unwrap().as_ptr(), [INFO] [stdout] | -------------------------- ^^^^^^ this pointer will be invalid [INFO] [stdout] | | [INFO] [stdout] | this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(temporary_cstring_as_ptr)]` on by default [INFO] [stdout] = note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned [INFO] [stdout] = help: for more information, see https://doc.rust-lang.org/reference/destructors.html [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.49s [INFO] running `Command { std: "docker" "inspect" "8e35b9b7c7878c3c1a674aa667d6a4456b1bfea9fbcc86ecdc45f78c75e8383f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "8e35b9b7c7878c3c1a674aa667d6a4456b1bfea9fbcc86ecdc45f78c75e8383f", kill_on_drop: false }` [INFO] [stdout] 8e35b9b7c7878c3c1a674aa667d6a4456b1bfea9fbcc86ecdc45f78c75e8383f [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-46/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" "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" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+1.59.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 5b6c24f63d4a22c4a98a2c39590a016298568f3e929b1fa4140538f30b8489d0 [INFO] running `Command { std: "docker" "start" "-a" "5b6c24f63d4a22c4a98a2c39590a016298568f3e929b1fa4140538f30b8489d0", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] warning: anonymous parameters are deprecated and will be removed in the next edition [INFO] [stderr] --> src/variant.rs:81:23 [INFO] [stderr] | [INFO] [stderr] 81 | fn set(&mut self, &T); [INFO] [stderr] | ^^ help: try naming the parameter or explicitly ignoring it: `_: &T` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stderr] = note: for more information, see issue #41686 [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/layer.rs:49:35 [INFO] [stderr] | [INFO] [stderr] 49 | pub fn payloads(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 49 - pub fn payloads(&self) -> Box> { [INFO] [stderr] 49 + pub fn payloads(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/payload.rs:29:33 [INFO] [stderr] | [INFO] [stderr] 29 | pub fn slices(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 29 - pub fn slices(&self) -> Box> { [INFO] [stderr] 29 + pub fn slices(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/file.rs:108:15 [INFO] [stderr] | [INFO] [stderr] 108 | _cb: &Fn(&mut Context, usize, f64), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 108 - _cb: &Fn(&mut Context, usize, f64), [INFO] [stderr] 108 + _cb: &dyn Fn(&mut Context, usize, f64), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/file.rs:123:15 [INFO] [stderr] | [INFO] [stderr] 123 | _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 123 - _cb: &Fn(&mut Context) -> &[RawFrame], [INFO] [stderr] 123 + _cb: &dyn Fn(&mut Context) -> &[RawFrame], [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: getting the inner pointer of a temporary `CString` [INFO] [stderr] --> src/logger.rs:33:40 [INFO] [stderr] | [INFO] [stderr] 33 | CString::new(msg).unwrap().as_ptr(), [INFO] [stderr] | -------------------------- ^^^^^^ this pointer will be invalid [INFO] [stderr] | | [INFO] [stderr] | this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(temporary_cstring_as_ptr)]` on by default [INFO] [stderr] = note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned [INFO] [stderr] = help: for more information, see https://doc.rust-lang.org/reference/destructors.html [INFO] [stderr] [INFO] [stderr] warning: `plugkit` (lib) generated 6 warnings [INFO] [stderr] warning: `plugkit` (lib test) generated 6 warnings (6 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.40s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/plugkit-82b6669f74c03409) [INFO] [stderr] Doc-tests plugkit [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; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 4 tests [INFO] [stdout] test src/token.rs - token::get (line 16) ... FAILED [INFO] [stdout] test src/token.rs - token::string (line 30) ... FAILED [INFO] [stdout] test src/token.rs - token::token (line 67) ... FAILED [INFO] [stdout] test src/token.rs - token::concat (line 50) ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- src/token.rs - token::get (line 16) stdout ---- [INFO] [stdout] Test executable failed (exit code 101). [INFO] [stdout] [INFO] [stdout] stderr: [INFO] [stdout] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src/token.rs:23:37 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x560209cf8d6c - std::backtrace_rs::backtrace::libunwind::trace::h91c465e73bf6c785 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x560209cf8d6c - std::backtrace_rs::backtrace::trace_unsynchronized::hae9da36f5d58b5f3 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x560209cf8d6c - std::sys_common::backtrace::_print_fmt::h7f499fa126a7effb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:67:5 [INFO] [stdout] 3: 0x560209cf8d6c - ::fmt::h3e2b509ce2ce6007 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:46:22 [INFO] [stdout] 4: 0x560209d148ec - core::fmt::write::h753c7571fa063ecb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/fmt/mod.rs:1168:17 [INFO] [stdout] 5: 0x560209cf5d93 - std::io::Write::write_fmt::h2815c0519c99ba09 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/io/mod.rs:1660:15 [INFO] [stdout] 6: 0x560209cfab12 - std::sys_common::backtrace::_print::h64941a6fc8b0ed9b [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:49:5 [INFO] [stdout] 7: 0x560209cfab12 - std::sys_common::backtrace::print::hcf25e43e1a9b0766 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:36:9 [INFO] [stdout] 8: 0x560209cfab12 - std::panicking::default_hook::{{closure}}::h78d3e6cf97fc623d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:211:50 [INFO] [stdout] 9: 0x560209cfa6f5 - std::panicking::default_hook::hda898f8d3ad1a5ae [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:228:9 [INFO] [stdout] 10: 0x560209cfb163 - std::panicking::rust_panic_with_hook::h1a5ea2d6c23051aa [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:606:17 [INFO] [stdout] 11: 0x560209cfae52 - std::panicking::begin_panic_handler::{{closure}}::h07f549390938b73f [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:500:13 [INFO] [stdout] 12: 0x560209cf9214 - std::sys_common::backtrace::__rust_end_short_backtrace::h5ec3758a92cfb00d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:139:18 [INFO] [stdout] 13: 0x560209cfabb9 - rust_begin_unwind [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:498:5 [INFO] [stdout] 14: 0x560209ce5271 - core::panicking::panic_fmt::h3a79a6a99affe1d5 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:116:14 [INFO] [stdout] 15: 0x560209ce51bd - core::panicking::panic::h97167cd315d19cd4 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x560209ce5eec - core::option::Option::unwrap::h7b7cd18b5da2020d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/option.rs:729:21 [INFO] [stdout] 17: 0x560209ce5d4c - plugkit::token::get::he7a83f9426e6e7b8 [INFO] [stdout] at /opt/rustwide/workdir/src/token.rs:23:14 [INFO] [stdout] 18: 0x560209ce5af5 - rust_out::main::_doctest_main_src_token_rs_16_0::he176047ae62290eb [INFO] [stdout] 19: 0x560209ce5ad6 - rust_out::main::h0a91ec602d6ccf7b [INFO] [stdout] 20: 0x560209ce5aa3 - core::ops::function::FnOnce::call_once::hf13fd7d7764c57e3 [INFO] [stdout] 21: 0x560209ce5c69 - std::sys_common::backtrace::__rust_begin_short_backtrace::h0721740d13b54d33 [INFO] [stdout] 22: 0x560209ce5c49 - std::rt::lang_start::{{closure}}::h942b0ebbf6e45677 [INFO] [stdout] 23: 0x560209cf8420 - core::ops::function::impls:: for &F>::call_once::h443f738a8e9f947a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/function.rs:259:13 [INFO] [stdout] 24: 0x560209cf8420 - std::panicking::try::do_call::h1e21ba261ba489ec [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 25: 0x560209cf8420 - std::panicking::try::h6afd48af8b6c96ac [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 26: 0x560209cf8420 - std::panic::catch_unwind::h85dd95e0bab7fb60 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 27: 0x560209cf8420 - std::rt::lang_start_internal::{{closure}}::h038455e697c8b03e [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:48 [INFO] [stdout] 28: 0x560209cf8420 - std::panicking::try::do_call::h6b0ad65979f3077a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 29: 0x560209cf8420 - std::panicking::try::h010108d314169ac6 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 30: 0x560209cf8420 - std::panic::catch_unwind::hff397f912b1535c2 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 31: 0x560209cf8420 - std::rt::lang_start_internal::h52e73755f77c7dd9 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:20 [INFO] [stdout] 32: 0x560209ce5c31 - std::rt::lang_start::ha5571370df8ae5c1 [INFO] [stdout] 33: 0x560209ce5cc3 - main [INFO] [stdout] 34: 0x7f8fde05b0b3 - __libc_start_main [INFO] [stdout] 35: 0x560209ce596e - _start [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] ---- src/token.rs - token::string (line 30) stdout ---- [INFO] [stdout] Test executable failed (exit code 101). [INFO] [stdout] [INFO] [stdout] stderr: [INFO] [stdout] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src/token.rs:23:37 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5613e235c39c - std::backtrace_rs::backtrace::libunwind::trace::h91c465e73bf6c785 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x5613e235c39c - std::backtrace_rs::backtrace::trace_unsynchronized::hae9da36f5d58b5f3 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x5613e235c39c - std::sys_common::backtrace::_print_fmt::h7f499fa126a7effb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:67:5 [INFO] [stdout] 3: 0x5613e235c39c - ::fmt::h3e2b509ce2ce6007 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:46:22 [INFO] [stdout] 4: 0x5613e2377f1c - core::fmt::write::h753c7571fa063ecb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/fmt/mod.rs:1168:17 [INFO] [stdout] 5: 0x5613e23593c3 - std::io::Write::write_fmt::h2815c0519c99ba09 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/io/mod.rs:1660:15 [INFO] [stdout] 6: 0x5613e235e142 - std::sys_common::backtrace::_print::h64941a6fc8b0ed9b [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:49:5 [INFO] [stdout] 7: 0x5613e235e142 - std::sys_common::backtrace::print::hcf25e43e1a9b0766 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:36:9 [INFO] [stdout] 8: 0x5613e235e142 - std::panicking::default_hook::{{closure}}::h78d3e6cf97fc623d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:211:50 [INFO] [stdout] 9: 0x5613e235dd25 - std::panicking::default_hook::hda898f8d3ad1a5ae [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:228:9 [INFO] [stdout] 10: 0x5613e235e793 - std::panicking::rust_panic_with_hook::h1a5ea2d6c23051aa [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:606:17 [INFO] [stdout] 11: 0x5613e235e482 - std::panicking::begin_panic_handler::{{closure}}::h07f549390938b73f [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:500:13 [INFO] [stdout] 12: 0x5613e235c844 - std::sys_common::backtrace::__rust_end_short_backtrace::h5ec3758a92cfb00d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:139:18 [INFO] [stdout] 13: 0x5613e235e1e9 - rust_begin_unwind [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:498:5 [INFO] [stdout] 14: 0x5613e2348271 - core::panicking::panic_fmt::h3a79a6a99affe1d5 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:116:14 [INFO] [stdout] 15: 0x5613e23481bd - core::panicking::panic::h97167cd315d19cd4 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x5613e23493cc - core::option::Option::unwrap::h7b7cd18b5da2020d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/option.rs:729:21 [INFO] [stdout] 17: 0x5613e2348f6c - plugkit::token::get::he7a83f9426e6e7b8 [INFO] [stdout] at /opt/rustwide/workdir/src/token.rs:23:14 [INFO] [stdout] 18: 0x5613e2348af6 - rust_out::main::_doctest_main_src_token_rs_30_0::haf4c7d623c3d0924 [INFO] [stdout] 19: 0x5613e2348ad6 - rust_out::main::h0a91ec602d6ccf7b [INFO] [stdout] 20: 0x5613e2348aa3 - core::ops::function::FnOnce::call_once::hf13fd7d7764c57e3 [INFO] [stdout] 21: 0x5613e2348cf9 - std::sys_common::backtrace::__rust_begin_short_backtrace::h0721740d13b54d33 [INFO] [stdout] 22: 0x5613e2348cd9 - std::rt::lang_start::{{closure}}::h942b0ebbf6e45677 [INFO] [stdout] 23: 0x5613e235ba50 - core::ops::function::impls:: for &F>::call_once::h443f738a8e9f947a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/function.rs:259:13 [INFO] [stdout] 24: 0x5613e235ba50 - std::panicking::try::do_call::h1e21ba261ba489ec [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 25: 0x5613e235ba50 - std::panicking::try::h6afd48af8b6c96ac [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 26: 0x5613e235ba50 - std::panic::catch_unwind::h85dd95e0bab7fb60 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 27: 0x5613e235ba50 - std::rt::lang_start_internal::{{closure}}::h038455e697c8b03e [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:48 [INFO] [stdout] 28: 0x5613e235ba50 - std::panicking::try::do_call::h6b0ad65979f3077a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 29: 0x5613e235ba50 - std::panicking::try::h010108d314169ac6 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 30: 0x5613e235ba50 - std::panic::catch_unwind::hff397f912b1535c2 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 31: 0x5613e235ba50 - std::rt::lang_start_internal::h52e73755f77c7dd9 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:20 [INFO] [stdout] 32: 0x5613e2348cc1 - std::rt::lang_start::ha5571370df8ae5c1 [INFO] [stdout] 33: 0x5613e2348ee3 - main [INFO] [stdout] 34: 0x7f14dedc30b3 - __libc_start_main [INFO] [stdout] 35: 0x5613e234896e - _start [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] ---- src/token.rs - token::token (line 67) stdout ---- [INFO] [stdout] Test executable failed (exit code 101). [INFO] [stdout] [INFO] [stdout] stderr: [INFO] [stdout] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src/token.rs:23:37 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x564b9f95b54c - std::backtrace_rs::backtrace::libunwind::trace::h91c465e73bf6c785 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x564b9f95b54c - std::backtrace_rs::backtrace::trace_unsynchronized::hae9da36f5d58b5f3 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x564b9f95b54c - std::sys_common::backtrace::_print_fmt::h7f499fa126a7effb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:67:5 [INFO] [stdout] 3: 0x564b9f95b54c - ::fmt::h3e2b509ce2ce6007 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:46:22 [INFO] [stdout] 4: 0x564b9f9770cc - core::fmt::write::h753c7571fa063ecb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/fmt/mod.rs:1168:17 [INFO] [stdout] 5: 0x564b9f958573 - std::io::Write::write_fmt::h2815c0519c99ba09 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/io/mod.rs:1660:15 [INFO] [stdout] 6: 0x564b9f95d2f2 - std::sys_common::backtrace::_print::h64941a6fc8b0ed9b [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:49:5 [INFO] [stdout] 7: 0x564b9f95d2f2 - std::sys_common::backtrace::print::hcf25e43e1a9b0766 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:36:9 [INFO] [stdout] 8: 0x564b9f95d2f2 - std::panicking::default_hook::{{closure}}::h78d3e6cf97fc623d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:211:50 [INFO] [stdout] 9: 0x564b9f95ced5 - std::panicking::default_hook::hda898f8d3ad1a5ae [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:228:9 [INFO] [stdout] 10: 0x564b9f95d943 - std::panicking::rust_panic_with_hook::h1a5ea2d6c23051aa [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:606:17 [INFO] [stdout] 11: 0x564b9f95d632 - std::panicking::begin_panic_handler::{{closure}}::h07f549390938b73f [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:500:13 [INFO] [stdout] 12: 0x564b9f95b9f4 - std::sys_common::backtrace::__rust_end_short_backtrace::h5ec3758a92cfb00d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:139:18 [INFO] [stdout] 13: 0x564b9f95d399 - rust_begin_unwind [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:498:5 [INFO] [stdout] 14: 0x564b9f947271 - core::panicking::panic_fmt::h3a79a6a99affe1d5 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:116:14 [INFO] [stdout] 15: 0x564b9f9471bd - core::panicking::panic::h97167cd315d19cd4 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x564b9f9486fc - core::option::Option::unwrap::h7b7cd18b5da2020d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/option.rs:729:21 [INFO] [stdout] 17: 0x564b9f94860c - plugkit::token::get::he7a83f9426e6e7b8 [INFO] [stdout] at /opt/rustwide/workdir/src/token.rs:23:14 [INFO] [stdout] 18: 0x564b9f947b33 - rust_out::main::_doctest_main_src_token_rs_67_0::TOKEN::__init::hde40ee24c96e590c [INFO] [stdout] 19: 0x564b9f947ab9 - core::ops::function::FnOnce::call_once::hf2d64bf3226204ef [INFO] [stdout] 20: 0x564b9f947cd3 - std::thread::local::lazy::LazyKeyInner::initialize::h06503f6a334eb93b [INFO] [stdout] 21: 0x564b9f947ec7 - std::thread::local::fast::Key::try_initialize::hb50318d26af993f7 [INFO] [stdout] 22: 0x564b9f947df7 - std::thread::local::fast::Key::get::h35a85f304380c1b6 [INFO] [stdout] 23: 0x564b9f947b56 - rust_out::main::_doctest_main_src_token_rs_67_0::TOKEN::__getit::hcc09e88b32e1eba7 [INFO] [stdout] 24: 0x564b9f947bb3 - std::thread::local::LocalKey::try_with::h165d31b7924d2a22 [INFO] [stdout] 25: 0x564b9f947b69 - std::thread::local::LocalKey::with::hed3ed17f69cf1a45 [INFO] [stdout] 26: 0x564b9f947b0d - rust_out::main::_doctest_main_src_token_rs_67_0::h85befaccd5a157db [INFO] [stdout] 27: 0x564b9f947af6 - rust_out::main::h0a91ec602d6ccf7b [INFO] [stdout] 28: 0x564b9f947aa3 - core::ops::function::FnOnce::call_once::hf13fd7d7764c57e3 [INFO] [stdout] 29: 0x564b9f948529 - std::sys_common::backtrace::__rust_begin_short_backtrace::h0721740d13b54d33 [INFO] [stdout] 30: 0x564b9f948509 - std::rt::lang_start::{{closure}}::h942b0ebbf6e45677 [INFO] [stdout] 31: 0x564b9f95ac00 - core::ops::function::impls:: for &F>::call_once::h443f738a8e9f947a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/function.rs:259:13 [INFO] [stdout] 32: 0x564b9f95ac00 - std::panicking::try::do_call::h1e21ba261ba489ec [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 33: 0x564b9f95ac00 - std::panicking::try::h6afd48af8b6c96ac [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 34: 0x564b9f95ac00 - std::panic::catch_unwind::h85dd95e0bab7fb60 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 35: 0x564b9f95ac00 - std::rt::lang_start_internal::{{closure}}::h038455e697c8b03e [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:48 [INFO] [stdout] 36: 0x564b9f95ac00 - std::panicking::try::do_call::h6b0ad65979f3077a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 37: 0x564b9f95ac00 - std::panicking::try::h010108d314169ac6 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 38: 0x564b9f95ac00 - std::panic::catch_unwind::hff397f912b1535c2 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 39: 0x564b9f95ac00 - std::rt::lang_start_internal::h52e73755f77c7dd9 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:20 [INFO] [stdout] 40: 0x564b9f9484f1 - std::rt::lang_start::ha5571370df8ae5c1 [INFO] [stdout] 41: 0x564b9f948583 - main [INFO] [stdout] 42: 0x7f3bde38f0b3 - __libc_start_main [INFO] [stdout] 43: 0x564b9f94796e - _start [INFO] [stdout] 44: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] ---- src/token.rs - token::concat (line 50) stdout ---- [INFO] [stdout] Test executable failed (exit code 101). [INFO] [stdout] [INFO] [stdout] stderr: [INFO] [stdout] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src/token.rs:23:37 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x564203c4d3ac - std::backtrace_rs::backtrace::libunwind::trace::h91c465e73bf6c785 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x564203c4d3ac - std::backtrace_rs::backtrace::trace_unsynchronized::hae9da36f5d58b5f3 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x564203c4d3ac - std::sys_common::backtrace::_print_fmt::h7f499fa126a7effb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:67:5 [INFO] [stdout] 3: 0x564203c4d3ac - ::fmt::h3e2b509ce2ce6007 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:46:22 [INFO] [stdout] 4: 0x564203c68f2c - core::fmt::write::h753c7571fa063ecb [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/fmt/mod.rs:1168:17 [INFO] [stdout] 5: 0x564203c4a3d3 - std::io::Write::write_fmt::h2815c0519c99ba09 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/io/mod.rs:1660:15 [INFO] [stdout] 6: 0x564203c4f152 - std::sys_common::backtrace::_print::h64941a6fc8b0ed9b [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:49:5 [INFO] [stdout] 7: 0x564203c4f152 - std::sys_common::backtrace::print::hcf25e43e1a9b0766 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:36:9 [INFO] [stdout] 8: 0x564203c4f152 - std::panicking::default_hook::{{closure}}::h78d3e6cf97fc623d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:211:50 [INFO] [stdout] 9: 0x564203c4ed35 - std::panicking::default_hook::hda898f8d3ad1a5ae [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:228:9 [INFO] [stdout] 10: 0x564203c4f7a3 - std::panicking::rust_panic_with_hook::h1a5ea2d6c23051aa [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:606:17 [INFO] [stdout] 11: 0x564203c4f492 - std::panicking::begin_panic_handler::{{closure}}::h07f549390938b73f [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:500:13 [INFO] [stdout] 12: 0x564203c4d854 - std::sys_common::backtrace::__rust_end_short_backtrace::h5ec3758a92cfb00d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/sys_common/backtrace.rs:139:18 [INFO] [stdout] 13: 0x564203c4f1f9 - rust_begin_unwind [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:498:5 [INFO] [stdout] 14: 0x564203c36281 - core::panicking::panic_fmt::h3a79a6a99affe1d5 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:116:14 [INFO] [stdout] 15: 0x564203c361cd - core::panicking::panic::h97167cd315d19cd4 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x564203c380bc - core::option::Option::unwrap::h7b7cd18b5da2020d [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/option.rs:729:21 [INFO] [stdout] 17: 0x564203c36e3c - plugkit::token::get::he7a83f9426e6e7b8 [INFO] [stdout] at /opt/rustwide/workdir/src/token.rs:23:14 [INFO] [stdout] 18: 0x564203c36b06 - rust_out::main::_doctest_main_src_token_rs_50_0::h43f35bda27d089bb [INFO] [stdout] 19: 0x564203c36ae6 - rust_out::main::h0a91ec602d6ccf7b [INFO] [stdout] 20: 0x564203c36ab3 - core::ops::function::FnOnce::call_once::hf13fd7d7764c57e3 [INFO] [stdout] 21: 0x564203c36c99 - std::sys_common::backtrace::__rust_begin_short_backtrace::h0721740d13b54d33 [INFO] [stdout] 22: 0x564203c36c79 - std::rt::lang_start::{{closure}}::h942b0ebbf6e45677 [INFO] [stdout] 23: 0x564203c4ca60 - core::ops::function::impls:: for &F>::call_once::h443f738a8e9f947a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/core/src/ops/function.rs:259:13 [INFO] [stdout] 24: 0x564203c4ca60 - std::panicking::try::do_call::h1e21ba261ba489ec [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 25: 0x564203c4ca60 - std::panicking::try::h6afd48af8b6c96ac [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 26: 0x564203c4ca60 - std::panic::catch_unwind::h85dd95e0bab7fb60 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 27: 0x564203c4ca60 - std::rt::lang_start_internal::{{closure}}::h038455e697c8b03e [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:48 [INFO] [stdout] 28: 0x564203c4ca60 - std::panicking::try::do_call::h6b0ad65979f3077a [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:406:40 [INFO] [stdout] 29: 0x564203c4ca60 - std::panicking::try::h010108d314169ac6 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panicking.rs:370:19 [INFO] [stdout] 30: 0x564203c4ca60 - std::panic::catch_unwind::hff397f912b1535c2 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/panic.rs:133:14 [INFO] [stdout] 31: 0x564203c4ca60 - std::rt::lang_start_internal::h52e73755f77c7dd9 [INFO] [stdout] at /rustc/9d1b2106e23b1abd32fce1f17267604a5102f57a/library/std/src/rt.rs:128:20 [INFO] [stdout] 32: 0x564203c36c61 - std::rt::lang_start::ha5571370df8ae5c1 [INFO] [stdout] 33: 0x564203c36cf3 - main [INFO] [stdout] 34: 0x7f2b903320b3 - __libc_start_main [INFO] [stdout] 35: 0x564203c3697e - _start [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] src/token.rs - token::concat (line 50) [INFO] [stdout] src/token.rs - token::get (line 16) [INFO] [stdout] src/token.rs - token::string (line 30) [INFO] [stdout] src/token.rs - token::token (line 67) [INFO] [stdout] [INFO] [stdout] test result: FAILED. 0 passed; 4 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.47s [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--doc' [INFO] running `Command { std: "docker" "inspect" "5b6c24f63d4a22c4a98a2c39590a016298568f3e929b1fa4140538f30b8489d0", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5b6c24f63d4a22c4a98a2c39590a016298568f3e929b1fa4140538f30b8489d0", kill_on_drop: false }` [INFO] [stdout] 5b6c24f63d4a22c4a98a2c39590a016298568f3e929b1fa4140538f30b8489d0