[INFO] fetching crate splot 0.1.0... [INFO] checking splot-0.1.0 against master#af4a5a13a15fa0c60e06321077ef452f769b42fd for pr-122960-3 [INFO] extracting crate splot 0.1.0 into /workspace/builds/worker-2-tc1/source [INFO] validating manifest of crates.io crate splot 0.1.0 on toolchain af4a5a13a15fa0c60e06321077ef452f769b42fd [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+af4a5a13a15fa0c60e06321077ef452f769b42fd" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate splot 0.1.0 [INFO] finished tweaking crates.io crate splot 0.1.0 [INFO] tweaked toml for crates.io crate splot 0.1.0 written to /workspace/builds/worker-2-tc1/source/Cargo.toml [INFO] crate crates.io crate splot 0.1.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+af4a5a13a15fa0c60e06321077ef452f769b42fd" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/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:2788e3201cd34a07e3172128adcd8b3090168a8e3bcc40d7c032b9dda1df7d1c" "/opt/rustwide/cargo-home/bin/cargo" "+af4a5a13a15fa0c60e06321077ef452f769b42fd" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 3153557381f12111a6762e254877373ba18b6d388b1877d3ba740c6e8b040fe5 [INFO] running `Command { std: "docker" "start" "-a" "3153557381f12111a6762e254877373ba18b6d388b1877d3ba740c6e8b040fe5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "3153557381f12111a6762e254877373ba18b6d388b1877d3ba740c6e8b040fe5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3153557381f12111a6762e254877373ba18b6d388b1877d3ba740c6e8b040fe5", kill_on_drop: false }` [INFO] [stdout] 3153557381f12111a6762e254877373ba18b6d388b1877d3ba740c6e8b040fe5 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/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=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-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:2788e3201cd34a07e3172128adcd8b3090168a8e3bcc40d7c032b9dda1df7d1c" "/opt/rustwide/cargo-home/bin/cargo" "+af4a5a13a15fa0c60e06321077ef452f769b42fd" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] abc6ef7ce5613839dcd0dfc9177aa5a4da0f0105483c902ddd9f33698cd24217 [INFO] running `Command { std: "docker" "start" "-a" "abc6ef7ce5613839dcd0dfc9177aa5a4da0f0105483c902ddd9f33698cd24217", kill_on_drop: false }` [INFO] [stderr] Checking splot v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:52:27 [INFO] [stdout] | [INFO] [stdout] 52 | Edge::Left => (rect.right() - len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 52 - Edge::Left => (rect.right() - len), [INFO] [stdout] 52 + Edge::Left => rect.right() - len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:53:28 [INFO] [stdout] | [INFO] [stdout] 53 | Edge::Right => (rect.x + len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 53 - Edge::Right => (rect.x + len), [INFO] [stdout] 53 + Edge::Right => rect.x + len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:59:26 [INFO] [stdout] | [INFO] [stdout] 59 | Edge::Top => (rect.bottom() - len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 59 - Edge::Top => (rect.bottom() - len), [INFO] [stdout] 59 + Edge::Top => rect.bottom() - len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:60:29 [INFO] [stdout] | [INFO] [stdout] 60 | Edge::Bottom => (rect.y + len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 60 - Edge::Bottom => (rect.y + len), [INFO] [stdout] 60 + Edge::Bottom => rect.y + len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:52:27 [INFO] [stdout] | [INFO] [stdout] 52 | Edge::Left => (rect.right() - len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 52 - Edge::Left => (rect.right() - len), [INFO] [stdout] 52 + Edge::Left => rect.right() - len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:53:28 [INFO] [stdout] | [INFO] [stdout] 53 | Edge::Right => (rect.x + len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 53 - Edge::Right => (rect.x + len), [INFO] [stdout] 53 + Edge::Right => rect.x + len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:59:26 [INFO] [stdout] | [INFO] [stdout] 59 | Edge::Top => (rect.bottom() - len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 59 - Edge::Top => (rect.bottom() - len), [INFO] [stdout] 59 + Edge::Top => rect.bottom() - len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/axis.rs:60:29 [INFO] [stdout] | [INFO] [stdout] 60 | Edge::Bottom => (rect.y + len), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 60 - Edge::Bottom => (rect.y + len), [INFO] [stdout] 60 + Edge::Bottom => rect.y + len, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `ticks` found for struct `scale::Numeric` in the current scope [INFO] [stdout] --> src/domain.rs:90:46 [INFO] [stdout] | [INFO] [stdout] 90 | let ticks = Numeric::new(45.0, 90.0).ticks(); [INFO] [stdout] | ^^^^^ method not found in `Numeric` [INFO] [stdout] | [INFO] [stdout] ::: src/scale.rs:14:1 [INFO] [stdout] | [INFO] [stdout] 14 | pub struct Numeric { [INFO] [stdout] | ------------------ method `ticks` not found for this struct [INFO] [stdout] | [INFO] [stdout] ::: src/private.rs:37:8 [INFO] [stdout] | [INFO] [stdout] 37 | fn ticks(&self) -> Vec; [INFO] [stdout] | ----- the method is available for `scale::Numeric` here [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is in scope [INFO] [stdout] help: trait `SealedScale` which provides `ticks` is implemented but not in scope; perhaps you want to import it [INFO] [stdout] | [INFO] [stdout] 83 + use crate::private::SealedScale; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: variants `Minimum` and `Maximum` are never constructed [INFO] [stdout] --> src/text.rs:13:5 [INFO] [stdout] | [INFO] [stdout] 11 | pub enum LabelPoint { [INFO] [stdout] | ---------- variants in this enum [INFO] [stdout] 12 | /// Minimum point (start of bar/column) [INFO] [stdout] 13 | Minimum, [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 17 | Maximum, [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `LabelPoint` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis [INFO] [stdout] = note: `#[warn(dead_code)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: variants `Below` and `Above` are never constructed [INFO] [stdout] --> src/text.rs:24:5 [INFO] [stdout] | [INFO] [stdout] 22 | pub enum VerticalOffset { [INFO] [stdout] | -------------- variants in this enum [INFO] [stdout] 23 | /// Label below point [INFO] [stdout] 24 | Below, [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 28 | Above, [INFO] [stdout] | ^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `VerticalOffset` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: multiple methods are never used [INFO] [stdout] --> src/text.rs:91:12 [INFO] [stdout] | [INFO] [stdout] 86 | impl Label { [INFO] [stdout] | ---------- methods in this implementation [INFO] [stdout] ... [INFO] [stdout] 91 | pub fn point(&self) -> LabelPoint { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 95 | pub fn vertical_offset(&self) -> f32 { [INFO] [stdout] | ^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 103 | pub fn minimum(mut self) -> Self { [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 108 | pub fn maximum(mut self) -> Self { [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 113 | pub fn above(mut self) -> Self { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 118 | pub fn below(mut self) -> Self { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 123 | pub fn start(mut self) -> Self { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 128 | pub fn end(mut self) -> Self { [INFO] [stdout] | ^^^ [INFO] [stdout] ... [INFO] [stdout] 133 | pub fn rounded(&self, value: f32) -> String { [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: method `dy` is never used [INFO] [stdout] --> src/text.rs:152:12 [INFO] [stdout] | [INFO] [stdout] 141 | impl<'a> Text<'a> { [INFO] [stdout] | ----------------- method in this implementation [INFO] [stdout] ... [INFO] [stdout] 152 | pub fn dy(mut self, dy: f32) -> Self { [INFO] [stdout] | ^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 8 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 1 previous error; 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0599`. [INFO] [stdout] [INFO] [stderr] error: could not compile `splot` (lib test) due to 2 previous errors; 4 warnings emitted [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] running `Command { std: "docker" "inspect" "abc6ef7ce5613839dcd0dfc9177aa5a4da0f0105483c902ddd9f33698cd24217", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "abc6ef7ce5613839dcd0dfc9177aa5a4da0f0105483c902ddd9f33698cd24217", kill_on_drop: false }` [INFO] [stdout] abc6ef7ce5613839dcd0dfc9177aa5a4da0f0105483c902ddd9f33698cd24217 [INFO] checking splot-0.1.0 against try#36dbcaee1a55543dfc181be52a69d99ff46ff62f for pr-122960-3 [INFO] extracting crate splot 0.1.0 into /workspace/builds/worker-2-tc2/source [INFO] validating manifest of crates.io crate splot 0.1.0 on toolchain 36dbcaee1a55543dfc181be52a69d99ff46ff62f [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+36dbcaee1a55543dfc181be52a69d99ff46ff62f" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate splot 0.1.0 [INFO] finished tweaking crates.io crate splot 0.1.0 [INFO] tweaked toml for crates.io crate splot 0.1.0 written to /workspace/builds/worker-2-tc2/source/Cargo.toml [INFO] crate crates.io crate splot 0.1.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+36dbcaee1a55543dfc181be52a69d99ff46ff62f" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/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:2788e3201cd34a07e3172128adcd8b3090168a8e3bcc40d7c032b9dda1df7d1c" "/opt/rustwide/cargo-home/bin/cargo" "+36dbcaee1a55543dfc181be52a69d99ff46ff62f" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 3fa8b963e8d90ef776b4bb36d627d472939dd96eba5e63f29fe6ef76ad30e45a [INFO] running `Command { std: "docker" "start" "-a" "3fa8b963e8d90ef776b4bb36d627d472939dd96eba5e63f29fe6ef76ad30e45a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "3fa8b963e8d90ef776b4bb36d627d472939dd96eba5e63f29fe6ef76ad30e45a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3fa8b963e8d90ef776b4bb36d627d472939dd96eba5e63f29fe6ef76ad30e45a", kill_on_drop: false }` [INFO] [stdout] 3fa8b963e8d90ef776b4bb36d627d472939dd96eba5e63f29fe6ef76ad30e45a [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/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=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-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:2788e3201cd34a07e3172128adcd8b3090168a8e3bcc40d7c032b9dda1df7d1c" "/opt/rustwide/cargo-home/bin/cargo" "+36dbcaee1a55543dfc181be52a69d99ff46ff62f" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 715363a8ce51e94ec88f2591aa3f928f01c355ad5eef1d3ee4feff1f7f16032c [INFO] running `Command { std: "docker" "start" "-a" "715363a8ce51e94ec88f2591aa3f928f01c355ad5eef1d3ee4feff1f7f16032c", kill_on_drop: false }` [INFO] [stderr] Copying to /tmp/fixit [INFO] [stderr] skipping non-2021 edition `2018` [INFO] running `Command { std: "docker" "inspect" "715363a8ce51e94ec88f2591aa3f928f01c355ad5eef1d3ee4feff1f7f16032c", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "715363a8ce51e94ec88f2591aa3f928f01c355ad5eef1d3ee4feff1f7f16032c", kill_on_drop: false }` [INFO] [stdout] 715363a8ce51e94ec88f2591aa3f928f01c355ad5eef1d3ee4feff1f7f16032c