[INFO] fetching crate rtriangulate 0.3.1... [INFO] testing rtriangulate-0.3.1 against beta-2022-02-22 for beta-1.60-1 [INFO] extracting crate rtriangulate 0.3.1 into /workspace/builds/worker-10/source [INFO] validating manifest of crates.io crate rtriangulate 0.3.1 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 rtriangulate 0.3.1 [INFO] finished tweaking crates.io crate rtriangulate 0.3.1 [INFO] tweaked toml for crates.io crate rtriangulate 0.3.1 written to /workspace/builds/worker-10/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "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-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] 8616b9f0f773f968ccc475a34756290b001e79ee6a1cfb3940b78cad81814507 [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" "8616b9f0f773f968ccc475a34756290b001e79ee6a1cfb3940b78cad81814507", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "8616b9f0f773f968ccc475a34756290b001e79ee6a1cfb3940b78cad81814507", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "8616b9f0f773f968ccc475a34756290b001e79ee6a1cfb3940b78cad81814507", kill_on_drop: false }` [INFO] [stdout] 8616b9f0f773f968ccc475a34756290b001e79ee6a1cfb3940b78cad81814507 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] f9edf8932fde866ea8510f79c0b127b91d62cf3f82bd31f6673ab1f31033a35e [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" "f9edf8932fde866ea8510f79c0b127b91d62cf3f82bd31f6673ab1f31033a35e", kill_on_drop: false }` [INFO] [stderr] Compiling rtriangulate v0.3.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:31 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &dyn Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &dyn Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:61 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &dyn Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:76 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &dyn Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:188:37 [INFO] [stdout] | [INFO] [stdout] 188 | fn get(&self, index: usize) -> &Point { [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] 188 - fn get(&self, index: usize) -> &Point { [INFO] [stdout] 188 + fn get(&self, index: usize) -> &dyn Point { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.32s [INFO] running `Command { std: "docker" "inspect" "f9edf8932fde866ea8510f79c0b127b91d62cf3f82bd31f6673ab1f31033a35e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f9edf8932fde866ea8510f79c0b127b91d62cf3f82bd31f6673ab1f31033a35e", kill_on_drop: false }` [INFO] [stdout] f9edf8932fde866ea8510f79c0b127b91d62cf3f82bd31f6673ab1f31033a35e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] e4cdc12736dc10052b2fbe5c3eaca709c257a5cc84efbde2217e21d480d812dd [INFO] running `Command { std: "docker" "start" "-a" "e4cdc12736dc10052b2fbe5c3eaca709c257a5cc84efbde2217e21d480d812dd", kill_on_drop: false }` [INFO] [stderr] Compiling bencher v0.1.5 [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:31 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &dyn Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &dyn Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:61 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &dyn Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:76 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &dyn Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:188:37 [INFO] [stdout] | [INFO] [stdout] 188 | fn get(&self, index: usize) -> &Point { [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] 188 - fn get(&self, index: usize) -> &Point { [INFO] [stdout] 188 + fn get(&self, index: usize) -> &dyn Point { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rtriangulate v0.3.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:31 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &dyn Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &dyn Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:61 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &dyn Point, t2: &Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:329:76 [INFO] [stdout] | [INFO] [stdout] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stdout] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &dyn Point) -> bool [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:188:37 [INFO] [stdout] | [INFO] [stdout] 188 | fn get(&self, index: usize) -> &Point { [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] 188 - fn get(&self, index: usize) -> &Point { [INFO] [stdout] 188 + fn get(&self, index: usize) -> &dyn Point { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.74s [INFO] running `Command { std: "docker" "inspect" "e4cdc12736dc10052b2fbe5c3eaca709c257a5cc84efbde2217e21d480d812dd", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e4cdc12736dc10052b2fbe5c3eaca709c257a5cc84efbde2217e21d480d812dd", kill_on_drop: false }` [INFO] [stdout] e4cdc12736dc10052b2fbe5c3eaca709c257a5cc84efbde2217e21d480d812dd [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] b9c2dded154d800704ce6163efe8774068bf8d21fc4064e4432f119e237bc0c6 [INFO] running `Command { std: "docker" "start" "-a" "b9c2dded154d800704ce6163efe8774068bf8d21fc4064e4432f119e237bc0c6", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:329:31 [INFO] [stderr] | [INFO] [stderr] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] 329 + fn in_circumcircle(point: &dyn Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:329:46 [INFO] [stderr] | [INFO] [stderr] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] 329 + fn in_circumcircle(point: &Point, t0: &dyn Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:329:61 [INFO] [stderr] | [INFO] [stderr] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &dyn Point, t2: &Point) -> bool [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:329:76 [INFO] [stderr] | [INFO] [stderr] 329 | fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [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] 329 - fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &Point) -> bool [INFO] [stderr] 329 + fn in_circumcircle(point: &Point, t0: &Point, t1: &Point, t2: &dyn Point) -> bool [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:188:37 [INFO] [stderr] | [INFO] [stderr] 188 | fn get(&self, index: usize) -> &Point { [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] 188 - fn get(&self, index: usize) -> &Point { [INFO] [stderr] 188 + fn get(&self, index: usize) -> &dyn Point { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `rtriangulate` (lib) generated 5 warnings [INFO] [stderr] warning: `rtriangulate` (lib test) generated 5 warnings (5 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stdout] [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/rtriangulate-12b8a0ee25cb2814) [INFO] [stdout] running 7 tests [INFO] [stdout] test tests::test_coincident_points ... ok [INFO] [stdout] test tests::test_overlapping ... ok [INFO] [stdout] test tests::test_points_ordering ... ok [INFO] [stdout] test tests::test_simple ... ok [INFO] [stdout] test tests::test_four_triangles ... ok [INFO] [stdout] test tests::test_complex ... ok [INFO] [stdout] test tests::test_less_than_three_points - should panic ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.09s [INFO] [stdout] [INFO] [stderr] Doc-tests rtriangulate [INFO] [stdout] [INFO] [stdout] running 3 tests [INFO] [stdout] test src/lib.rs - Edge (line 153) ... ok [INFO] [stdout] test src/lib.rs - (line 17) ... ok [INFO] [stdout] test src/lib.rs - triangulate (line 210) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.69s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "b9c2dded154d800704ce6163efe8774068bf8d21fc4064e4432f119e237bc0c6", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "b9c2dded154d800704ce6163efe8774068bf8d21fc4064e4432f119e237bc0c6", kill_on_drop: false }` [INFO] [stdout] b9c2dded154d800704ce6163efe8774068bf8d21fc4064e4432f119e237bc0c6