[INFO] fetching crate dual_balanced_ternary 0.1.0-a8... [INFO] testing dual_balanced_ternary-0.1.0-a8 against beta-2022-02-22 for beta-1.60-1 [INFO] extracting crate dual_balanced_ternary 0.1.0-a8 into /workspace/builds/worker-5/source [INFO] validating manifest of crates.io crate dual_balanced_ternary 0.1.0-a8 on toolchain beta-2022-02-22 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate dual_balanced_ternary 0.1.0-a8 [INFO] finished tweaking crates.io crate dual_balanced_ternary 0.1.0-a8 [INFO] tweaked toml for crates.io crate dual_balanced_ternary 0.1.0-a8 written to /workspace/builds/worker-5/source/Cargo.toml [INFO] crate crates.io crate dual_balanced_ternary 0.1.0-a8 already has a lockfile, it will not be regenerated [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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" "+beta-2022-02-22" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 82339828f3784c616305f6cde1abd62fffbc360ef54581f2d3c723bd29ae8439 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "82339828f3784c616305f6cde1abd62fffbc360ef54581f2d3c723bd29ae8439", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "82339828f3784c616305f6cde1abd62fffbc360ef54581f2d3c723bd29ae8439", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "82339828f3784c616305f6cde1abd62fffbc360ef54581f2d3c723bd29ae8439", kill_on_drop: false }` [INFO] [stdout] 82339828f3784c616305f6cde1abd62fffbc360ef54581f2d3c723bd29ae8439 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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" "+beta-2022-02-22" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 6c40bb9ac7351167c2a1b8092a36296cd3cde491aa28dfb98e8796759057d4d1 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "6c40bb9ac7351167c2a1b8092a36296cd3cde491aa28dfb98e8796759057d4d1", kill_on_drop: false }` [INFO] [stderr] Compiling dual_balanced_ternary v0.1.0-a8 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:17:25 [INFO] [stdout] | [INFO] [stdout] 17 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 17 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 17 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:23:25 [INFO] [stdout] | [INFO] [stdout] 23 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 23 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 23 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:29:25 [INFO] [stdout] | [INFO] [stdout] 29 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 29 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 29 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:31:23 [INFO] [stdout] | [INFO] [stdout] 31 | _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 31 - _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] 31 + _ => unreachable!("unexpected x: {}", x), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:261:20 [INFO] [stdout] | [INFO] [stdout] 261 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 262 | | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | | self [INFO] [stdout] 264 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 261 ~ unreachable!( [INFO] [stdout] 262 | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | self [INFO] [stdout] 264 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:267:20 [INFO] [stdout] | [INFO] [stdout] 267 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 268 | | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | | other [INFO] [stdout] 270 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 267 ~ unreachable!( [INFO] [stdout] 268 | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | other [INFO] [stdout] 270 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:288:24 [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!(String::from("TODO, unknown case")) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!("{}", String::from("TODO, unknown case")) [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:45:20 [INFO] [stdout] | [INFO] [stdout] 45 | unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 45 - unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] 45 + unreachable!("unexpected reminder: {} from {}", left, x) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:70:20 [INFO] [stdout] | [INFO] [stdout] 70 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 71 | | "unexpected carry: {} from {}", [INFO] [stdout] 72 | | left, fractional_part [INFO] [stdout] 73 | | )); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 70 ~ unreachable!( [INFO] [stdout] 71 | "unexpected carry: {} from {}", [INFO] [stdout] 72 | left, fractional_part [INFO] [stdout] 73 ~ ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 9 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.06s [INFO] running `Command { std: "docker" "inspect" "6c40bb9ac7351167c2a1b8092a36296cd3cde491aa28dfb98e8796759057d4d1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "6c40bb9ac7351167c2a1b8092a36296cd3cde491aa28dfb98e8796759057d4d1", kill_on_drop: false }` [INFO] [stdout] 6c40bb9ac7351167c2a1b8092a36296cd3cde491aa28dfb98e8796759057d4d1 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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" "+beta-2022-02-22" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 76b96740aa92986b8c0f8f49d7d79500830bcf8a34834ab7128c5e2538e3e86b [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "76b96740aa92986b8c0f8f49d7d79500830bcf8a34834ab7128c5e2538e3e86b", kill_on_drop: false }` [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:17:25 [INFO] [stdout] | [INFO] [stdout] 17 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 17 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 17 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling dual_balanced_ternary v0.1.0-a8 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:23:25 [INFO] [stdout] | [INFO] [stdout] 23 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 23 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 23 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:29:25 [INFO] [stdout] | [INFO] [stdout] 29 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 29 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 29 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:31:23 [INFO] [stdout] | [INFO] [stdout] 31 | _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 31 - _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] 31 + _ => unreachable!("unexpected x: {}", x), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:261:20 [INFO] [stdout] | [INFO] [stdout] 261 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 262 | | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | | self [INFO] [stdout] 264 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 261 ~ unreachable!( [INFO] [stdout] 262 | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | self [INFO] [stdout] 264 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:267:20 [INFO] [stdout] | [INFO] [stdout] 267 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 268 | | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | | other [INFO] [stdout] 270 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 267 ~ unreachable!( [INFO] [stdout] 268 | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | other [INFO] [stdout] 270 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:288:24 [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!(String::from("TODO, unknown case")) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!("{}", String::from("TODO, unknown case")) [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:45:20 [INFO] [stdout] | [INFO] [stdout] 45 | unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 45 - unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] 45 + unreachable!("unexpected reminder: {} from {}", left, x) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:70:20 [INFO] [stdout] | [INFO] [stdout] 70 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 71 | | "unexpected carry: {} from {}", [INFO] [stdout] 72 | | left, fractional_part [INFO] [stdout] 73 | | )); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 70 ~ unreachable!( [INFO] [stdout] 71 | "unexpected carry: {} from {}", [INFO] [stdout] 72 | left, fractional_part [INFO] [stdout] 73 ~ ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 9 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `dual_balanced_ternary::complex::ComplextXy` [INFO] [stdout] --> tests/digit_test.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use dual_balanced_ternary::complex::ComplextXy; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_imports)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `create_dual_balanced_ternary_from_pair` [INFO] [stdout] --> tests/digit_test.rs:3:3 [INFO] [stdout] | [INFO] [stdout] 3 | create_dual_balanced_ternary_from_pair, dbt_digits, ternary, DualBalancedTernaryDigit::*, [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `dual_balanced_ternary::complex::ComplextXy` [INFO] [stdout] --> tests/buffer_test.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use dual_balanced_ternary::complex::ComplextXy; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_imports)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `create_dual_balanced_ternary_from_pair` [INFO] [stdout] --> tests/buffer_test.rs:3:3 [INFO] [stdout] | [INFO] [stdout] 3 | create_dual_balanced_ternary_from_pair, ternary, DualBalancedTernary, DualBalancedTernaryDigit::*, [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:17:25 [INFO] [stdout] | [INFO] [stdout] 17 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 17 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 17 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:23:25 [INFO] [stdout] | [INFO] [stdout] 23 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 23 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 23 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:29:25 [INFO] [stdout] | [INFO] [stdout] 29 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 29 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stdout] 29 + _ => unreachable!("unexpected y: {}", y), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/complex.rs:31:23 [INFO] [stdout] | [INFO] [stdout] 31 | _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 31 - _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stdout] 31 + _ => unreachable!("unexpected x: {}", x), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:261:20 [INFO] [stdout] | [INFO] [stdout] 261 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 262 | | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | | self [INFO] [stdout] 264 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 261 ~ unreachable!( [INFO] [stdout] 262 | "only linear ternary values allowed for a: {}", [INFO] [stdout] 263 | self [INFO] [stdout] 264 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:267:20 [INFO] [stdout] | [INFO] [stdout] 267 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 268 | | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | | other [INFO] [stdout] 270 | | )) [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 267 ~ unreachable!( [INFO] [stdout] 268 | "only linear ternary values allowed for b: {}", [INFO] [stdout] 269 | other [INFO] [stdout] 270 ~ ) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/primes.rs:288:24 [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!(String::from("TODO, unknown case")) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 288 | unreachable!("{}", String::from("TODO, unknown case")) [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:45:20 [INFO] [stdout] | [INFO] [stdout] 45 | unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 45 - unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stdout] 45 + unreachable!("unexpected reminder: {} from {}", left, x) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:70:20 [INFO] [stdout] | [INFO] [stdout] 70 | unreachable!(format!( [INFO] [stdout] | ____________________^ [INFO] [stdout] 71 | | "unexpected carry: {} from {}", [INFO] [stdout] 72 | | left, fractional_part [INFO] [stdout] 73 | | )); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 70 ~ unreachable!( [INFO] [stdout] 71 | "unexpected carry: {} from {}", [INFO] [stdout] 72 | left, fractional_part [INFO] [stdout] 73 ~ ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 9 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.68s [INFO] running `Command { std: "docker" "inspect" "76b96740aa92986b8c0f8f49d7d79500830bcf8a34834ab7128c5e2538e3e86b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "76b96740aa92986b8c0f8f49d7d79500830bcf8a34834ab7128c5e2538e3e86b", kill_on_drop: false }` [INFO] [stdout] 76b96740aa92986b8c0f8f49d7d79500830bcf8a34834ab7128c5e2538e3e86b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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" "+beta-2022-02-22" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] a196f7865c1fe098c6af93f7a28b81a456090ac149f2de5213efc8cb7829af6f [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "a196f7865c1fe098c6af93f7a28b81a456090ac149f2de5213efc8cb7829af6f", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/complex.rs:17:25 [INFO] [stderr] | [INFO] [stderr] 17 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 17 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] 17 + _ => unreachable!("unexpected y: {}", y), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/complex.rs:23:25 [INFO] [stderr] | [INFO] [stderr] 23 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 23 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] 23 + _ => unreachable!("unexpected y: {}", y), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/complex.rs:29:25 [INFO] [stderr] | [INFO] [stderr] 29 | _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 29 - _ => unreachable!(format!("unexpected y: {}", y)), [INFO] [stderr] 29 + _ => unreachable!("unexpected y: {}", y), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/complex.rs:31:23 [INFO] [stderr] | [INFO] [stderr] 31 | _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 31 - _ => unreachable!(format!("unexpected x: {}", x)), [INFO] [stderr] 31 + _ => unreachable!("unexpected x: {}", x), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/primes.rs:261:20 [INFO] [stderr] | [INFO] [stderr] 261 | unreachable!(format!( [INFO] [stderr] | ____________________^ [INFO] [stderr] 262 | | "only linear ternary values allowed for a: {}", [INFO] [stderr] 263 | | self [INFO] [stderr] 264 | | )) [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 261 ~ unreachable!( [INFO] [stderr] 262 | "only linear ternary values allowed for a: {}", [INFO] [stderr] 263 | self [INFO] [stderr] 264 ~ ) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/primes.rs:267:20 [INFO] [stderr] | [INFO] [stderr] 267 | unreachable!(format!( [INFO] [stderr] | ____________________^ [INFO] [stderr] 268 | | "only linear ternary values allowed for b: {}", [INFO] [stderr] 269 | | other [INFO] [stderr] 270 | | )) [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 267 ~ unreachable!( [INFO] [stderr] 268 | "only linear ternary values allowed for b: {}", [INFO] [stderr] 269 | other [INFO] [stderr] 270 ~ ) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/primes.rs:288:24 [INFO] [stderr] | [INFO] [stderr] 288 | unreachable!(String::from("TODO, unknown case")) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{}" format string to Display the message [INFO] [stderr] | [INFO] [stderr] 288 | unreachable!("{}", String::from("TODO, unknown case")) [INFO] [stderr] | +++++ [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/lib.rs:45:20 [INFO] [stderr] | [INFO] [stderr] 45 | unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 45 - unreachable!(format!("unexpected reminder: {} from {}", left, x)) [INFO] [stderr] 45 + unreachable!("unexpected reminder: {} from {}", left, x) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/lib.rs:70:20 [INFO] [stderr] | [INFO] [stderr] 70 | unreachable!(format!( [INFO] [stderr] | ____________________^ [INFO] [stderr] 71 | | "unexpected carry: {} from {}", [INFO] [stderr] 72 | | left, fractional_part [INFO] [stderr] 73 | | )); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the unreachable!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 70 ~ unreachable!( [INFO] [stderr] 71 | "unexpected carry: {} from {}", [INFO] [stderr] 72 | left, fractional_part [INFO] [stderr] 73 ~ ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `dual_balanced_ternary` (lib) generated 9 warnings [INFO] [stderr] warning: `dual_balanced_ternary` (lib test) generated 9 warnings (9 duplicates) [INFO] [stderr] warning: unused import: `dual_balanced_ternary::complex::ComplextXy` [INFO] [stderr] --> tests/digit_test.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use dual_balanced_ternary::complex::ComplextXy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `create_dual_balanced_ternary_from_pair` [INFO] [stderr] --> tests/digit_test.rs:3:3 [INFO] [stderr] | [INFO] [stderr] 3 | create_dual_balanced_ternary_from_pair, dbt_digits, ternary, DualBalancedTernaryDigit::*, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `dual_balanced_ternary::complex::ComplextXy` [INFO] [stderr] --> tests/buffer_test.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use dual_balanced_ternary::complex::ComplextXy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `create_dual_balanced_ternary_from_pair` [INFO] [stderr] --> tests/buffer_test.rs:3:3 [INFO] [stderr] | [INFO] [stderr] 3 | create_dual_balanced_ternary_from_pair, ternary, DualBalancedTernary, DualBalancedTernaryDigit::*, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `dual_balanced_ternary` (test "digit_test") generated 2 warnings [INFO] [stderr] warning: `dual_balanced_ternary` (test "buffer_test") generated 2 warnings [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.61s [INFO] [stdout] [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/dual_balanced_ternary-7339a9d75a58df86) [INFO] [stdout] running 0 tests [INFO] [stderr] Running tests/buffer_test.rs (/opt/rustwide/target/debug/deps/buffer_test-bde789c224f3e680) [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 1 test [INFO] [stderr] Running tests/digit_test.rs (/opt/rustwide/target/debug/deps/digit_test-0874309bffb048e8) [INFO] [stdout] test to_buffer ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 1 test [INFO] [stderr] Running tests/math_test.rs (/opt/rustwide/target/debug/deps/math_test-a9bb9bad204a4b01) [INFO] [stdout] test equality ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 11 tests [INFO] [stdout] test test_add ... ok [INFO] [stdout] test test_sub ... ok [INFO] [stdout] test equality ... ok [INFO] [stdout] test try_negate ... ok [INFO] [stdout] test test_hashes ... ok [INFO] [stdout] test parse_and_format ... ok [INFO] [stdout] test test_complex ... ok [INFO] [stdout] test test_multiply ... ok [INFO] [stdout] test test_round ... ok [INFO] [stdout] test test_add_at ... ok [INFO] [stderr] Doc-tests dual_balanced_ternary [INFO] [stdout] test test_divide ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.08s [INFO] [stdout] [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] running `Command { std: "docker" "inspect" "a196f7865c1fe098c6af93f7a28b81a456090ac149f2de5213efc8cb7829af6f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a196f7865c1fe098c6af93f7a28b81a456090ac149f2de5213efc8cb7829af6f", kill_on_drop: false }` [INFO] [stdout] a196f7865c1fe098c6af93f7a28b81a456090ac149f2de5213efc8cb7829af6f