[INFO] fetching crate rds 0.0.3... [INFO] testing rds-0.0.3 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate rds 0.0.3 into /workspace/builds/worker-1/source [INFO] validating manifest of crates.io crate rds 0.0.3 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate rds 0.0.3 [INFO] finished tweaking crates.io crate rds 0.0.3 [INFO] tweaked toml for crates.io crate rds 0.0.3 written to /workspace/builds/worker-1/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] ce43757405b98dcda88240852b9a50ad389161a2c778f4f6b32e35dc788032b1 [INFO] running `Command { std: "docker" "start" "-a" "ce43757405b98dcda88240852b9a50ad389161a2c778f4f6b32e35dc788032b1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "ce43757405b98dcda88240852b9a50ad389161a2c778f4f6b32e35dc788032b1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ce43757405b98dcda88240852b9a50ad389161a2c778f4f6b32e35dc788032b1", kill_on_drop: false }` [INFO] [stdout] ce43757405b98dcda88240852b9a50ad389161a2c778f4f6b32e35dc788032b1 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] be418b5ee02c2b49ff268e600b2c362d5e5381360339d194d6e508abd3b3af9d [INFO] running `Command { std: "docker" "start" "-a" "be418b5ee02c2b49ff268e600b2c362d5e5381360339d194d6e508abd3b3af9d", kill_on_drop: false }` [INFO] [stderr] Compiling libc v0.2.123 [INFO] [stderr] Compiling byteorder v0.5.3 [INFO] [stderr] Compiling rustc-serialize v0.3.24 [INFO] [stderr] Compiling csv v0.14.7 [INFO] [stderr] Compiling rds v0.0.3 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:94:35 [INFO] [stdout] | [INFO] [stdout] 94 | fn assign(&mut self, other : &NDData) { [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] 94 - fn assign(&mut self, other : &NDData) { [INFO] [stdout] 94 + fn assign(&mut self, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:206:35 [INFO] [stdout] | [INFO] [stdout] 206 | pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [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] 206 - pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] 206 + pub fn cast(data : &dyn NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:231:65 [INFO] [stdout] | [INFO] [stdout] 231 | pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [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] 231 - pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [INFO] [stdout] 231 + pub fn insert(&mut self, dim : usize, pos : usize, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:68:36 [INFO] [stdout] | [INFO] [stdout] 68 | fn axpy(&mut self, a : T, x : &NDData); [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] 68 - fn axpy(&mut self, a : T, x : &NDData); [INFO] [stdout] 68 + fn axpy(&mut self, a : T, x : &dyn NDData); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:71:24 [INFO] [stdout] | [INFO] [stdout] 71 | fn dot(&self, x : &NDData) -> T; [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] 71 - fn dot(&self, x : &NDData) -> T; [INFO] [stdout] 71 + fn dot(&self, x : &dyn NDData) -> T; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:40 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &dyn NDData, x : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:56 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &NDData, x : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:40 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &dyn NDData, b : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:56 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &NDData, b : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:130:38 [INFO] [stdout] | [INFO] [stdout] 130 | fn axpy(&mut self, a : f32, x : &NDData) { [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] 130 - fn axpy(&mut self, a : f32, x : &NDData) { [INFO] [stdout] 130 + fn axpy(&mut self, a : f32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:144:24 [INFO] [stdout] | [INFO] [stdout] 144 | fn dot(&self, x : &NDData) -> f32 { [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] 144 - fn dot(&self, x : &NDData) -> f32 { [INFO] [stdout] 144 + fn dot(&self, x : &dyn NDData) -> f32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:42 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &dyn NDData, x : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:60 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &NDData, x : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:42 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &dyn NDData, b : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:60 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &NDData, b : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:206:38 [INFO] [stdout] | [INFO] [stdout] 206 | fn axpy(&mut self, a : f64, x : &NDData) { [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] 206 - fn axpy(&mut self, a : f64, x : &NDData) { [INFO] [stdout] 206 + fn axpy(&mut self, a : f64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:220:24 [INFO] [stdout] | [INFO] [stdout] 220 | fn dot(&self, x : &NDData) -> 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] 220 - fn dot(&self, x : &NDData) -> f64 { [INFO] [stdout] 220 + fn dot(&self, x : &dyn NDData) -> f64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:42 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &dyn NDData, x : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:60 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &NDData, x : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:42 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &dyn NDData, b : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:60 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &NDData, b : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:282:38 [INFO] [stdout] | [INFO] [stdout] 282 | fn axpy(&mut self, a : c32, x : &NDData) { [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] 282 - fn axpy(&mut self, a : c32, x : &NDData) { [INFO] [stdout] 282 + fn axpy(&mut self, a : c32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:296:24 [INFO] [stdout] | [INFO] [stdout] 296 | fn dot(&self, x : &NDData) -> c32 { [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] 296 - fn dot(&self, x : &NDData) -> c32 { [INFO] [stdout] 296 + fn dot(&self, x : &dyn NDData) -> c32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:42 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &dyn NDData, x : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:60 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &NDData, x : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:42 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &dyn NDData, b : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:60 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &NDData, b : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:360:38 [INFO] [stdout] | [INFO] [stdout] 360 | fn axpy(&mut self, a : c64, x : &NDData) { [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] 360 - fn axpy(&mut self, a : c64, x : &NDData) { [INFO] [stdout] 360 + fn axpy(&mut self, a : c64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:374:24 [INFO] [stdout] | [INFO] [stdout] 374 | fn dot(&self, x : &NDData) -> c64 { [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] 374 - fn dot(&self, x : &NDData) -> c64 { [INFO] [stdout] 374 + fn dot(&self, x : &dyn NDData) -> c64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:42 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &dyn NDData, x : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:60 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &NDData, x : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:42 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &dyn NDData, b : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:60 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &NDData, b : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/csv.rs:176:55 [INFO] [stdout] | [INFO] [stdout] 176 | pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [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] 176 - pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [INFO] [stdout] 176 + pub fn write_data(&mut self, data : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/numpy.rs:546:74 [INFO] [stdout] | [INFO] [stdout] 546 | pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [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] 546 - pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [INFO] [stdout] 546 + pub fn write_data(&mut self, array : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:26:44 [INFO] [stdout] | [INFO] [stdout] 26 | fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [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] 26 - fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [INFO] [stdout] 26 + fn set_array(&self, id : u32, array : &dyn SizedBuffer) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:28:48 [INFO] [stdout] | [INFO] [stdout] 28 | fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [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] 28 - fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [INFO] [stdout] 28 + fn get_array(&self, id : u32, array : &mut dyn SizedBufferMut) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:48:23 [INFO] [stdout] | [INFO] [stdout] 48 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:62:23 [INFO] [stdout] | [INFO] [stdout] 62 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:132:34 [INFO] [stdout] | [INFO] [stdout] 132 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:166:34 [INFO] [stdout] | [INFO] [stdout] 166 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:192:34 [INFO] [stdout] | [INFO] [stdout] 192 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:203:30 [INFO] [stdout] | [INFO] [stdout] 203 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:210:30 [INFO] [stdout] | [INFO] [stdout] 210 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:56:25 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:63:25 [INFO] [stdout] | [INFO] [stdout] 63 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:70:25 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:77:25 [INFO] [stdout] | [INFO] [stdout] 77 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:84:25 [INFO] [stdout] | [INFO] [stdout] 84 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:91:25 [INFO] [stdout] | [INFO] [stdout] 91 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:98:25 [INFO] [stdout] | [INFO] [stdout] 98 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:105:25 [INFO] [stdout] | [INFO] [stdout] 105 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:112:25 [INFO] [stdout] | [INFO] [stdout] 112 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:119:25 [INFO] [stdout] | [INFO] [stdout] 119 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:128:33 [INFO] [stdout] | [INFO] [stdout] 128 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:131:25 [INFO] [stdout] | [INFO] [stdout] 131 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:140:33 [INFO] [stdout] | [INFO] [stdout] 140 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:143:25 [INFO] [stdout] | [INFO] [stdout] 143 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:150:32 [INFO] [stdout] | [INFO] [stdout] 150 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:157:32 [INFO] [stdout] | [INFO] [stdout] 157 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:164:32 [INFO] [stdout] | [INFO] [stdout] 164 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:171:32 [INFO] [stdout] | [INFO] [stdout] 171 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:178:32 [INFO] [stdout] | [INFO] [stdout] 178 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:185:32 [INFO] [stdout] | [INFO] [stdout] 185 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:192:32 [INFO] [stdout] | [INFO] [stdout] 192 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:199:32 [INFO] [stdout] | [INFO] [stdout] 199 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:206:32 [INFO] [stdout] | [INFO] [stdout] 206 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:213:32 [INFO] [stdout] | [INFO] [stdout] 213 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:223:40 [INFO] [stdout] | [INFO] [stdout] 223 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:226:32 [INFO] [stdout] | [INFO] [stdout] 226 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:236:40 [INFO] [stdout] | [INFO] [stdout] 236 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:239:32 [INFO] [stdout] | [INFO] [stdout] 239 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:260:29 [INFO] [stdout] | [INFO] [stdout] 260 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:267:29 [INFO] [stdout] | [INFO] [stdout] 267 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:281:26 [INFO] [stdout] | [INFO] [stdout] 281 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:288:26 [INFO] [stdout] | [INFO] [stdout] 288 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:294:30 [INFO] [stdout] | [INFO] [stdout] 294 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:301:30 [INFO] [stdout] | [INFO] [stdout] 301 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:311:26 [INFO] [stdout] | [INFO] [stdout] 311 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:315:36 [INFO] [stdout] | [INFO] [stdout] 315 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:370:44 [INFO] [stdout] | [INFO] [stdout] 370 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:382:26 [INFO] [stdout] | [INFO] [stdout] 382 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:385:26 [INFO] [stdout] | [INFO] [stdout] 385 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:429:26 [INFO] [stdout] | [INFO] [stdout] 429 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:432:26 [INFO] [stdout] | [INFO] [stdout] 432 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:34:36 [INFO] [stdout] | [INFO] [stdout] 34 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:39:26 [INFO] [stdout] | [INFO] [stdout] 39 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:44:40 [INFO] [stdout] | [INFO] [stdout] 44 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:46:36 [INFO] [stdout] | [INFO] [stdout] 46 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:54:40 [INFO] [stdout] | [INFO] [stdout] 54 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:56:36 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:62:26 [INFO] [stdout] | [INFO] [stdout] 62 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:72:44 [INFO] [stdout] | [INFO] [stdout] 72 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:74:40 [INFO] [stdout] | [INFO] [stdout] 74 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:79:26 [INFO] [stdout] | [INFO] [stdout] 79 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:86:38 [INFO] [stdout] | [INFO] [stdout] 86 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:97:38 [INFO] [stdout] | [INFO] [stdout] 97 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:75:24 [INFO] [stdout] | [INFO] [stdout] 75 | ... panic!(format!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0]... [INFO] [stdout] | ______________^ [INFO] [stdout] 76 | | ... i, self.shape()[0], self.shape()[i])); [INFO] [stdout] | |__________________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 75 ~ panic!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0] != shape[{}] ({} != {})", [INFO] [stdout] 76 ~ i, self.shape()[0], self.shape()[i]); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:196:20 [INFO] [stdout] | [INFO] [stdout] 196 | ...c!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()... [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 196 - panic!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len())); [INFO] [stdout] 196 + panic!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:222:20 [INFO] [stdout] | [INFO] [stdout] 222 | ...nic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 222 - panic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] 222 + panic!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 102 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 4.17s [INFO] running `Command { std: "docker" "inspect" "be418b5ee02c2b49ff268e600b2c362d5e5381360339d194d6e508abd3b3af9d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "be418b5ee02c2b49ff268e600b2c362d5e5381360339d194d6e508abd3b3af9d", kill_on_drop: false }` [INFO] [stdout] be418b5ee02c2b49ff268e600b2c362d5e5381360339d194d6e508abd3b3af9d [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] b64e441eac27980d44c803c71846407f4bd341fdfa13306eec57d3d02e653414 [INFO] running `Command { std: "docker" "start" "-a" "b64e441eac27980d44c803c71846407f4bd341fdfa13306eec57d3d02e653414", 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] Blocking waiting for file lock on package cache [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:94:35 [INFO] [stdout] | [INFO] [stdout] 94 | fn assign(&mut self, other : &NDData) { [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] 94 - fn assign(&mut self, other : &NDData) { [INFO] [stdout] 94 + fn assign(&mut self, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:206:35 [INFO] [stdout] | [INFO] [stdout] 206 | pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [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] 206 - pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] 206 + pub fn cast(data : &dyn NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:231:65 [INFO] [stdout] | [INFO] [stdout] 231 | pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [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] 231 - pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [INFO] [stdout] 231 + pub fn insert(&mut self, dim : usize, pos : usize, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:68:36 [INFO] [stdout] | [INFO] [stdout] 68 | fn axpy(&mut self, a : T, x : &NDData); [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] 68 - fn axpy(&mut self, a : T, x : &NDData); [INFO] [stdout] 68 + fn axpy(&mut self, a : T, x : &dyn NDData); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:71:24 [INFO] [stdout] | [INFO] [stdout] 71 | fn dot(&self, x : &NDData) -> T; [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] 71 - fn dot(&self, x : &NDData) -> T; [INFO] [stdout] 71 + fn dot(&self, x : &dyn NDData) -> T; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:40 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &dyn NDData, x : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:56 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &NDData, x : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:40 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &dyn NDData, b : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:56 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &NDData, b : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:130:38 [INFO] [stdout] | [INFO] [stdout] 130 | fn axpy(&mut self, a : f32, x : &NDData) { [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] 130 - fn axpy(&mut self, a : f32, x : &NDData) { [INFO] [stdout] 130 + fn axpy(&mut self, a : f32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:144:24 [INFO] [stdout] | [INFO] [stdout] 144 | fn dot(&self, x : &NDData) -> f32 { [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] 144 - fn dot(&self, x : &NDData) -> f32 { [INFO] [stdout] 144 + fn dot(&self, x : &dyn NDData) -> f32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:42 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &dyn NDData, x : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:60 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &NDData, x : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:42 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &dyn NDData, b : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:60 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &NDData, b : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:206:38 [INFO] [stdout] | [INFO] [stdout] 206 | fn axpy(&mut self, a : f64, x : &NDData) { [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] 206 - fn axpy(&mut self, a : f64, x : &NDData) { [INFO] [stdout] 206 + fn axpy(&mut self, a : f64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:220:24 [INFO] [stdout] | [INFO] [stdout] 220 | fn dot(&self, x : &NDData) -> 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] 220 - fn dot(&self, x : &NDData) -> f64 { [INFO] [stdout] 220 + fn dot(&self, x : &dyn NDData) -> f64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:42 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &dyn NDData, x : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:60 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &NDData, x : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:42 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &dyn NDData, b : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:60 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &NDData, b : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:282:38 [INFO] [stdout] | [INFO] [stdout] 282 | fn axpy(&mut self, a : c32, x : &NDData) { [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] 282 - fn axpy(&mut self, a : c32, x : &NDData) { [INFO] [stdout] 282 + fn axpy(&mut self, a : c32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:296:24 [INFO] [stdout] | [INFO] [stdout] 296 | fn dot(&self, x : &NDData) -> c32 { [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] 296 - fn dot(&self, x : &NDData) -> c32 { [INFO] [stdout] 296 + fn dot(&self, x : &dyn NDData) -> c32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:42 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &dyn NDData, x : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:60 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &NDData, x : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:42 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &dyn NDData, b : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:60 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &NDData, b : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:360:38 [INFO] [stdout] | [INFO] [stdout] 360 | fn axpy(&mut self, a : c64, x : &NDData) { [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] 360 - fn axpy(&mut self, a : c64, x : &NDData) { [INFO] [stdout] 360 + fn axpy(&mut self, a : c64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:374:24 [INFO] [stdout] | [INFO] [stdout] 374 | fn dot(&self, x : &NDData) -> c64 { [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] 374 - fn dot(&self, x : &NDData) -> c64 { [INFO] [stdout] 374 + fn dot(&self, x : &dyn NDData) -> c64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:42 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &dyn NDData, x : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:60 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &NDData, x : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:42 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &dyn NDData, b : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:60 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &NDData, b : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/csv.rs:176:55 [INFO] [stdout] | [INFO] [stdout] 176 | pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [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] 176 - pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [INFO] [stdout] 176 + pub fn write_data(&mut self, data : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/numpy.rs:546:74 [INFO] [stdout] | [INFO] [stdout] 546 | pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [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] 546 - pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [INFO] [stdout] 546 + pub fn write_data(&mut self, array : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:26:44 [INFO] [stdout] | [INFO] [stdout] 26 | fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [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] 26 - fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [INFO] [stdout] 26 + fn set_array(&self, id : u32, array : &dyn SizedBuffer) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:28:48 [INFO] [stdout] | [INFO] [stdout] 28 | fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [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] 28 - fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [INFO] [stdout] 28 + fn get_array(&self, id : u32, array : &mut dyn SizedBufferMut) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:48:23 [INFO] [stdout] | [INFO] [stdout] 48 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:62:23 [INFO] [stdout] | [INFO] [stdout] 62 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:132:34 [INFO] [stdout] | [INFO] [stdout] 132 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:166:34 [INFO] [stdout] | [INFO] [stdout] 166 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:192:34 [INFO] [stdout] | [INFO] [stdout] 192 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:203:30 [INFO] [stdout] | [INFO] [stdout] 203 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:210:30 [INFO] [stdout] | [INFO] [stdout] 210 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:56:25 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:63:25 [INFO] [stdout] | [INFO] [stdout] 63 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:70:25 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:77:25 [INFO] [stdout] | [INFO] [stdout] 77 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:84:25 [INFO] [stdout] | [INFO] [stdout] 84 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:91:25 [INFO] [stdout] | [INFO] [stdout] 91 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:98:25 [INFO] [stdout] | [INFO] [stdout] 98 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:105:25 [INFO] [stdout] | [INFO] [stdout] 105 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:112:25 [INFO] [stdout] | [INFO] [stdout] 112 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:119:25 [INFO] [stdout] | [INFO] [stdout] 119 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:128:33 [INFO] [stdout] | [INFO] [stdout] 128 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:131:25 [INFO] [stdout] | [INFO] [stdout] 131 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:140:33 [INFO] [stdout] | [INFO] [stdout] 140 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:143:25 [INFO] [stdout] | [INFO] [stdout] 143 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:150:32 [INFO] [stdout] | [INFO] [stdout] 150 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:157:32 [INFO] [stdout] | [INFO] [stdout] 157 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:164:32 [INFO] [stdout] | [INFO] [stdout] 164 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:171:32 [INFO] [stdout] | [INFO] [stdout] 171 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:178:32 [INFO] [stdout] | [INFO] [stdout] 178 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:185:32 [INFO] [stdout] | [INFO] [stdout] 185 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:192:32 [INFO] [stdout] | [INFO] [stdout] 192 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:199:32 [INFO] [stdout] | [INFO] [stdout] 199 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:206:32 [INFO] [stdout] | [INFO] [stdout] 206 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:213:32 [INFO] [stdout] | [INFO] [stdout] 213 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:223:40 [INFO] [stdout] | [INFO] [stdout] 223 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:226:32 [INFO] [stdout] | [INFO] [stdout] 226 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:236:40 [INFO] [stdout] | [INFO] [stdout] 236 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:239:32 [INFO] [stdout] | [INFO] [stdout] 239 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:260:29 [INFO] [stdout] | [INFO] [stdout] 260 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:267:29 [INFO] [stdout] | [INFO] [stdout] 267 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:281:26 [INFO] [stdout] | [INFO] [stdout] 281 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:288:26 [INFO] [stdout] | [INFO] [stdout] 288 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:294:30 [INFO] [stdout] | [INFO] [stdout] 294 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:301:30 [INFO] [stdout] | [INFO] [stdout] 301 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:311:26 [INFO] [stdout] | [INFO] [stdout] 311 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:315:36 [INFO] [stdout] | [INFO] [stdout] 315 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:370:44 [INFO] [stdout] | [INFO] [stdout] 370 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:382:26 [INFO] [stdout] | [INFO] [stdout] 382 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:385:26 [INFO] [stdout] | [INFO] [stdout] 385 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:429:26 [INFO] [stdout] | [INFO] [stdout] 429 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:432:26 [INFO] [stdout] | [INFO] [stdout] 432 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:34:36 [INFO] [stdout] | [INFO] [stdout] 34 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:39:26 [INFO] [stdout] | [INFO] [stdout] 39 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:44:40 [INFO] [stdout] | [INFO] [stdout] 44 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:46:36 [INFO] [stdout] | [INFO] [stdout] 46 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:54:40 [INFO] [stdout] | [INFO] [stdout] 54 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:56:36 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:62:26 [INFO] [stdout] | [INFO] [stdout] 62 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rds v0.0.3 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:72:44 [INFO] [stdout] | [INFO] [stdout] 72 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:74:40 [INFO] [stdout] | [INFO] [stdout] 74 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:79:26 [INFO] [stdout] | [INFO] [stdout] 79 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:86:38 [INFO] [stdout] | [INFO] [stdout] 86 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:97:38 [INFO] [stdout] | [INFO] [stdout] 97 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:75:24 [INFO] [stdout] | [INFO] [stdout] 75 | ... panic!(format!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0]... [INFO] [stdout] | ______________^ [INFO] [stdout] 76 | | ... i, self.shape()[0], self.shape()[i])); [INFO] [stdout] | |__________________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 75 ~ panic!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0] != shape[{}] ({} != {})", [INFO] [stdout] 76 ~ i, self.shape()[0], self.shape()[i]); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:196:20 [INFO] [stdout] | [INFO] [stdout] 196 | ...c!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()... [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 196 - panic!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len())); [INFO] [stdout] 196 + panic!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:222:20 [INFO] [stdout] | [INFO] [stdout] 222 | ...nic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 222 - panic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] 222 + panic!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 102 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:94:35 [INFO] [stdout] | [INFO] [stdout] 94 | fn assign(&mut self, other : &NDData) { [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] 94 - fn assign(&mut self, other : &NDData) { [INFO] [stdout] 94 + fn assign(&mut self, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:206:35 [INFO] [stdout] | [INFO] [stdout] 206 | pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [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] 206 - pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] 206 + pub fn cast(data : &dyn NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/mod.rs:231:65 [INFO] [stdout] | [INFO] [stdout] 231 | pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [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] 231 - pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [INFO] [stdout] 231 + pub fn insert(&mut self, dim : usize, pos : usize, other : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:68:36 [INFO] [stdout] | [INFO] [stdout] 68 | fn axpy(&mut self, a : T, x : &NDData); [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] 68 - fn axpy(&mut self, a : T, x : &NDData); [INFO] [stdout] 68 + fn axpy(&mut self, a : T, x : &dyn NDData); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:71:24 [INFO] [stdout] | [INFO] [stdout] 71 | fn dot(&self, x : &NDData) -> T; [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] 71 - fn dot(&self, x : &NDData) -> T; [INFO] [stdout] 71 + fn dot(&self, x : &dyn NDData) -> T; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:40 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &dyn NDData, x : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:76:56 [INFO] [stdout] | [INFO] [stdout] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stdout] 76 + fn gemv(&mut self, alpha : T, a : &NDData, x : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:40 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &dyn NDData, b : &NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:81:56 [INFO] [stdout] | [INFO] [stdout] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stdout] 81 + fn gemm(&mut self, alpha : T, a : &NDData, b : &dyn NDData, beta : T); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:130:38 [INFO] [stdout] | [INFO] [stdout] 130 | fn axpy(&mut self, a : f32, x : &NDData) { [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] 130 - fn axpy(&mut self, a : f32, x : &NDData) { [INFO] [stdout] 130 + fn axpy(&mut self, a : f32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:144:24 [INFO] [stdout] | [INFO] [stdout] 144 | fn dot(&self, x : &NDData) -> f32 { [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] 144 - fn dot(&self, x : &NDData) -> f32 { [INFO] [stdout] 144 + fn dot(&self, x : &dyn NDData) -> f32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:42 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &dyn NDData, x : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:154:60 [INFO] [stdout] | [INFO] [stdout] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stdout] 154 + fn gemv(&mut self, alpha : f32, a : &NDData, x : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:42 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &dyn NDData, b : &NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:170:60 [INFO] [stdout] | [INFO] [stdout] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stdout] 170 + fn gemm(&mut self, alpha : f32, a : &NDData, b : &dyn NDData, beta : f32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:206:38 [INFO] [stdout] | [INFO] [stdout] 206 | fn axpy(&mut self, a : f64, x : &NDData) { [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] 206 - fn axpy(&mut self, a : f64, x : &NDData) { [INFO] [stdout] 206 + fn axpy(&mut self, a : f64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:220:24 [INFO] [stdout] | [INFO] [stdout] 220 | fn dot(&self, x : &NDData) -> 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] 220 - fn dot(&self, x : &NDData) -> f64 { [INFO] [stdout] 220 + fn dot(&self, x : &dyn NDData) -> f64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:42 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &dyn NDData, x : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:230:60 [INFO] [stdout] | [INFO] [stdout] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stdout] 230 + fn gemv(&mut self, alpha : f64, a : &NDData, x : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:42 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &dyn NDData, b : &NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:246:60 [INFO] [stdout] | [INFO] [stdout] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stdout] 246 + fn gemm(&mut self, alpha : f64, a : &NDData, b : &dyn NDData, beta : f64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:282:38 [INFO] [stdout] | [INFO] [stdout] 282 | fn axpy(&mut self, a : c32, x : &NDData) { [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] 282 - fn axpy(&mut self, a : c32, x : &NDData) { [INFO] [stdout] 282 + fn axpy(&mut self, a : c32, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:296:24 [INFO] [stdout] | [INFO] [stdout] 296 | fn dot(&self, x : &NDData) -> c32 { [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] 296 - fn dot(&self, x : &NDData) -> c32 { [INFO] [stdout] 296 + fn dot(&self, x : &dyn NDData) -> c32 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:42 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &dyn NDData, x : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:308:60 [INFO] [stdout] | [INFO] [stdout] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stdout] 308 + fn gemv(&mut self, alpha : c32, a : &NDData, x : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:42 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &dyn NDData, b : &NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:324:60 [INFO] [stdout] | [INFO] [stdout] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stdout] 324 + fn gemm(&mut self, alpha : c32, a : &NDData, b : &dyn NDData, beta : c32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:360:38 [INFO] [stdout] | [INFO] [stdout] 360 | fn axpy(&mut self, a : c64, x : &NDData) { [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] 360 - fn axpy(&mut self, a : c64, x : &NDData) { [INFO] [stdout] 360 + fn axpy(&mut self, a : c64, x : &dyn NDData) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:374:24 [INFO] [stdout] | [INFO] [stdout] 374 | fn dot(&self, x : &NDData) -> c64 { [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] 374 - fn dot(&self, x : &NDData) -> c64 { [INFO] [stdout] 374 + fn dot(&self, x : &dyn NDData) -> c64 { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:42 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &dyn NDData, x : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:386:60 [INFO] [stdout] | [INFO] [stdout] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stdout] 386 + fn gemv(&mut self, alpha : c64, a : &NDData, x : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:42 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &dyn NDData, b : &NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/blas/mod.rs:402:60 [INFO] [stdout] | [INFO] [stdout] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stdout] 402 + fn gemm(&mut self, alpha : c64, a : &NDData, b : &dyn NDData, beta : c64) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/csv.rs:176:55 [INFO] [stdout] | [INFO] [stdout] 176 | pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [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] 176 - pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [INFO] [stdout] 176 + pub fn write_data(&mut self, data : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/array/numpy.rs:546:74 [INFO] [stdout] | [INFO] [stdout] 546 | pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [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] 546 - pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [INFO] [stdout] 546 + pub fn write_data(&mut self, array : &dyn NDData) -> Result<(), String> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:26:44 [INFO] [stdout] | [INFO] [stdout] 26 | fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [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] 26 - fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [INFO] [stdout] 26 + fn set_array(&self, id : u32, array : &dyn SizedBuffer) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/backend/compute_backend.rs:28:48 [INFO] [stdout] | [INFO] [stdout] 28 | fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [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] 28 - fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [INFO] [stdout] 28 + fn get_array(&self, id : u32, array : &mut dyn SizedBufferMut) -> Result<(),String>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:48:23 [INFO] [stdout] | [INFO] [stdout] 48 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:62:23 [INFO] [stdout] | [INFO] [stdout] 62 | Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:132:34 [INFO] [stdout] | [INFO] [stdout] 132 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:166:34 [INFO] [stdout] | [INFO] [stdout] 166 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:192:34 [INFO] [stdout] | [INFO] [stdout] 192 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:203:30 [INFO] [stdout] | [INFO] [stdout] 203 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/csv.rs:210:30 [INFO] [stdout] | [INFO] [stdout] 210 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:56:25 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:63:25 [INFO] [stdout] | [INFO] [stdout] 63 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:70:25 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:77:25 [INFO] [stdout] | [INFO] [stdout] 77 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:84:25 [INFO] [stdout] | [INFO] [stdout] 84 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:91:25 [INFO] [stdout] | [INFO] [stdout] 91 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:98:25 [INFO] [stdout] | [INFO] [stdout] 98 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:105:25 [INFO] [stdout] | [INFO] [stdout] 105 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:112:25 [INFO] [stdout] | [INFO] [stdout] 112 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:119:25 [INFO] [stdout] | [INFO] [stdout] 119 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:128:33 [INFO] [stdout] | [INFO] [stdout] 128 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:131:25 [INFO] [stdout] | [INFO] [stdout] 131 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:140:33 [INFO] [stdout] | [INFO] [stdout] 140 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:143:25 [INFO] [stdout] | [INFO] [stdout] 143 | Err(e) => Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:150:32 [INFO] [stdout] | [INFO] [stdout] 150 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:157:32 [INFO] [stdout] | [INFO] [stdout] 157 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:164:32 [INFO] [stdout] | [INFO] [stdout] 164 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:171:32 [INFO] [stdout] | [INFO] [stdout] 171 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:178:32 [INFO] [stdout] | [INFO] [stdout] 178 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:185:32 [INFO] [stdout] | [INFO] [stdout] 185 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:192:32 [INFO] [stdout] | [INFO] [stdout] 192 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:199:32 [INFO] [stdout] | [INFO] [stdout] 199 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:206:32 [INFO] [stdout] | [INFO] [stdout] 206 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:213:32 [INFO] [stdout] | [INFO] [stdout] 213 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:223:40 [INFO] [stdout] | [INFO] [stdout] 223 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:226:32 [INFO] [stdout] | [INFO] [stdout] 226 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:236:40 [INFO] [stdout] | [INFO] [stdout] 236 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:239:32 [INFO] [stdout] | [INFO] [stdout] 239 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:260:29 [INFO] [stdout] | [INFO] [stdout] 260 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:267:29 [INFO] [stdout] | [INFO] [stdout] 267 | Err(e) => Err(e.description().to_string()), [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:281:26 [INFO] [stdout] | [INFO] [stdout] 281 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:288:26 [INFO] [stdout] | [INFO] [stdout] 288 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:294:30 [INFO] [stdout] | [INFO] [stdout] 294 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:301:30 [INFO] [stdout] | [INFO] [stdout] 301 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:311:26 [INFO] [stdout] | [INFO] [stdout] 311 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:315:36 [INFO] [stdout] | [INFO] [stdout] 315 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:370:44 [INFO] [stdout] | [INFO] [stdout] 370 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:382:26 [INFO] [stdout] | [INFO] [stdout] 382 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:385:26 [INFO] [stdout] | [INFO] [stdout] 385 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:429:26 [INFO] [stdout] | [INFO] [stdout] 429 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/numpy.rs:432:26 [INFO] [stdout] | [INFO] [stdout] 432 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:34:36 [INFO] [stdout] | [INFO] [stdout] 34 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:39:26 [INFO] [stdout] | [INFO] [stdout] 39 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:44:40 [INFO] [stdout] | [INFO] [stdout] 44 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:46:36 [INFO] [stdout] | [INFO] [stdout] 46 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:54:40 [INFO] [stdout] | [INFO] [stdout] 54 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:56:36 [INFO] [stdout] | [INFO] [stdout] 56 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:62:26 [INFO] [stdout] | [INFO] [stdout] 62 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:72:44 [INFO] [stdout] | [INFO] [stdout] 72 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:74:40 [INFO] [stdout] | [INFO] [stdout] 74 | Err(e) => return Err(e.description().to_string()) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:79:26 [INFO] [stdout] | [INFO] [stdout] 79 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:86:38 [INFO] [stdout] | [INFO] [stdout] 86 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/array/edf.rs:97:38 [INFO] [stdout] | [INFO] [stdout] 97 | return Err(e.description().to_string()); [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:75:24 [INFO] [stdout] | [INFO] [stdout] 75 | ... panic!(format!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0]... [INFO] [stdout] | ______________^ [INFO] [stdout] 76 | | ... i, self.shape()[0], self.shape()[i])); [INFO] [stdout] | |__________________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 75 ~ panic!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0] != shape[{}] ({} != {})", [INFO] [stdout] 76 ~ i, self.shape()[0], self.shape()[i]); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:196:20 [INFO] [stdout] | [INFO] [stdout] 196 | ...c!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()... [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 196 - panic!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len())); [INFO] [stdout] 196 + panic!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/array/mod.rs:222:20 [INFO] [stdout] | [INFO] [stdout] 222 | ...nic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() 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] 222 - panic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stdout] 222 + panic!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 102 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 3.08s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/rds-8ada77cba6d167e2) [INFO] running `Command { std: "docker" "inspect" "b64e441eac27980d44c803c71846407f4bd341fdfa13306eec57d3d02e653414", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "b64e441eac27980d44c803c71846407f4bd341fdfa13306eec57d3d02e653414", kill_on_drop: false }` [INFO] [stdout] b64e441eac27980d44c803c71846407f4bd341fdfa13306eec57d3d02e653414 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 6c4cf64f962a239a319178e9b0388aa695ca6ec1a9beae8b219f2be91f82b296 [INFO] running `Command { std: "docker" "start" "-a" "6c4cf64f962a239a319178e9b0388aa695ca6ec1a9beae8b219f2be91f82b296", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/array/mod.rs:94:35 [INFO] [stderr] | [INFO] [stderr] 94 | fn assign(&mut self, other : &NDData) { [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] 94 - fn assign(&mut self, other : &NDData) { [INFO] [stderr] 94 + fn assign(&mut self, other : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/array/mod.rs:206:35 [INFO] [stderr] | [INFO] [stderr] 206 | pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [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] 206 - pub fn cast(data : &NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stderr] 206 + pub fn cast(data : &dyn NDData) -> NDArray where T : Copy, U : Cast { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/array/mod.rs:231:65 [INFO] [stderr] | [INFO] [stderr] 231 | pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [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] 231 - pub fn insert(&mut self, dim : usize, pos : usize, other : &NDData) { [INFO] [stderr] 231 + pub fn insert(&mut self, dim : usize, pos : usize, other : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:68:36 [INFO] [stderr] | [INFO] [stderr] 68 | fn axpy(&mut self, a : T, x : &NDData); [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] 68 - fn axpy(&mut self, a : T, x : &NDData); [INFO] [stderr] 68 + fn axpy(&mut self, a : T, x : &dyn NDData); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:71:24 [INFO] [stderr] | [INFO] [stderr] 71 | fn dot(&self, x : &NDData) -> T; [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] 71 - fn dot(&self, x : &NDData) -> T; [INFO] [stderr] 71 + fn dot(&self, x : &dyn NDData) -> T; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:76:40 [INFO] [stderr] | [INFO] [stderr] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stderr] 76 + fn gemv(&mut self, alpha : T, a : &dyn NDData, x : &NDData, beta : T); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:76:56 [INFO] [stderr] | [INFO] [stderr] 76 | fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [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] 76 - fn gemv(&mut self, alpha : T, a : &NDData, x : &NDData, beta : T); [INFO] [stderr] 76 + fn gemv(&mut self, alpha : T, a : &NDData, x : &dyn NDData, beta : T); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:81:40 [INFO] [stderr] | [INFO] [stderr] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stderr] 81 + fn gemm(&mut self, alpha : T, a : &dyn NDData, b : &NDData, beta : T); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:81:56 [INFO] [stderr] | [INFO] [stderr] 81 | fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [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] 81 - fn gemm(&mut self, alpha : T, a : &NDData, b : &NDData, beta : T); [INFO] [stderr] 81 + fn gemm(&mut self, alpha : T, a : &NDData, b : &dyn NDData, beta : T); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:130:38 [INFO] [stderr] | [INFO] [stderr] 130 | fn axpy(&mut self, a : f32, x : &NDData) { [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] 130 - fn axpy(&mut self, a : f32, x : &NDData) { [INFO] [stderr] 130 + fn axpy(&mut self, a : f32, x : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:144:24 [INFO] [stderr] | [INFO] [stderr] 144 | fn dot(&self, x : &NDData) -> f32 { [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] 144 - fn dot(&self, x : &NDData) -> f32 { [INFO] [stderr] 144 + fn dot(&self, x : &dyn NDData) -> f32 { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:154:42 [INFO] [stderr] | [INFO] [stderr] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stderr] 154 + fn gemv(&mut self, alpha : f32, a : &dyn NDData, x : &NDData, beta : f32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:154:60 [INFO] [stderr] | [INFO] [stderr] 154 | fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [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] 154 - fn gemv(&mut self, alpha : f32, a : &NDData, x : &NDData, beta : f32) { [INFO] [stderr] 154 + fn gemv(&mut self, alpha : f32, a : &NDData, x : &dyn NDData, beta : f32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:170:42 [INFO] [stderr] | [INFO] [stderr] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stderr] 170 + fn gemm(&mut self, alpha : f32, a : &dyn NDData, b : &NDData, beta : f32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:170:60 [INFO] [stderr] | [INFO] [stderr] 170 | fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [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] 170 - fn gemm(&mut self, alpha : f32, a : &NDData, b : &NDData, beta : f32) { [INFO] [stderr] 170 + fn gemm(&mut self, alpha : f32, a : &NDData, b : &dyn NDData, beta : f32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:206:38 [INFO] [stderr] | [INFO] [stderr] 206 | fn axpy(&mut self, a : f64, x : &NDData) { [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] 206 - fn axpy(&mut self, a : f64, x : &NDData) { [INFO] [stderr] 206 + fn axpy(&mut self, a : f64, x : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:220:24 [INFO] [stderr] | [INFO] [stderr] 220 | fn dot(&self, x : &NDData) -> 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] 220 - fn dot(&self, x : &NDData) -> f64 { [INFO] [stderr] 220 + fn dot(&self, x : &dyn NDData) -> f64 { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:230:42 [INFO] [stderr] | [INFO] [stderr] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stderr] 230 + fn gemv(&mut self, alpha : f64, a : &dyn NDData, x : &NDData, beta : f64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:230:60 [INFO] [stderr] | [INFO] [stderr] 230 | fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : 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] 230 - fn gemv(&mut self, alpha : f64, a : &NDData, x : &NDData, beta : f64) { [INFO] [stderr] 230 + fn gemv(&mut self, alpha : f64, a : &NDData, x : &dyn NDData, beta : f64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:246:42 [INFO] [stderr] | [INFO] [stderr] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stderr] 246 + fn gemm(&mut self, alpha : f64, a : &dyn NDData, b : &NDData, beta : f64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:246:60 [INFO] [stderr] | [INFO] [stderr] 246 | fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : 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] 246 - fn gemm(&mut self, alpha : f64, a : &NDData, b : &NDData, beta : f64) { [INFO] [stderr] 246 + fn gemm(&mut self, alpha : f64, a : &NDData, b : &dyn NDData, beta : f64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:282:38 [INFO] [stderr] | [INFO] [stderr] 282 | fn axpy(&mut self, a : c32, x : &NDData) { [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] 282 - fn axpy(&mut self, a : c32, x : &NDData) { [INFO] [stderr] 282 + fn axpy(&mut self, a : c32, x : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:296:24 [INFO] [stderr] | [INFO] [stderr] 296 | fn dot(&self, x : &NDData) -> c32 { [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] 296 - fn dot(&self, x : &NDData) -> c32 { [INFO] [stderr] 296 + fn dot(&self, x : &dyn NDData) -> c32 { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:308:42 [INFO] [stderr] | [INFO] [stderr] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stderr] 308 + fn gemv(&mut self, alpha : c32, a : &dyn NDData, x : &NDData, beta : c32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:308:60 [INFO] [stderr] | [INFO] [stderr] 308 | fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [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] 308 - fn gemv(&mut self, alpha : c32, a : &NDData, x : &NDData, beta : c32) { [INFO] [stderr] 308 + fn gemv(&mut self, alpha : c32, a : &NDData, x : &dyn NDData, beta : c32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:324:42 [INFO] [stderr] | [INFO] [stderr] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stderr] 324 + fn gemm(&mut self, alpha : c32, a : &dyn NDData, b : &NDData, beta : c32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:324:60 [INFO] [stderr] | [INFO] [stderr] 324 | fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [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] 324 - fn gemm(&mut self, alpha : c32, a : &NDData, b : &NDData, beta : c32) { [INFO] [stderr] 324 + fn gemm(&mut self, alpha : c32, a : &NDData, b : &dyn NDData, beta : c32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:360:38 [INFO] [stderr] | [INFO] [stderr] 360 | fn axpy(&mut self, a : c64, x : &NDData) { [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] 360 - fn axpy(&mut self, a : c64, x : &NDData) { [INFO] [stderr] 360 + fn axpy(&mut self, a : c64, x : &dyn NDData) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:374:24 [INFO] [stderr] | [INFO] [stderr] 374 | fn dot(&self, x : &NDData) -> c64 { [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] 374 - fn dot(&self, x : &NDData) -> c64 { [INFO] [stderr] 374 + fn dot(&self, x : &dyn NDData) -> c64 { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:386:42 [INFO] [stderr] | [INFO] [stderr] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stderr] 386 + fn gemv(&mut self, alpha : c64, a : &dyn NDData, x : &NDData, beta : c64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:386:60 [INFO] [stderr] | [INFO] [stderr] 386 | fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [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] 386 - fn gemv(&mut self, alpha : c64, a : &NDData, x : &NDData, beta : c64) { [INFO] [stderr] 386 + fn gemv(&mut self, alpha : c64, a : &NDData, x : &dyn NDData, beta : c64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:402:42 [INFO] [stderr] | [INFO] [stderr] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stderr] 402 + fn gemm(&mut self, alpha : c64, a : &dyn NDData, b : &NDData, beta : c64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/blas/mod.rs:402:60 [INFO] [stderr] | [INFO] [stderr] 402 | fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [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] 402 - fn gemm(&mut self, alpha : c64, a : &NDData, b : &NDData, beta : c64) { [INFO] [stderr] 402 + fn gemm(&mut self, alpha : c64, a : &NDData, b : &dyn NDData, beta : c64) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/array/csv.rs:176:55 [INFO] [stderr] | [INFO] [stderr] 176 | pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [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] 176 - pub fn write_data(&mut self, data : &NDData) -> Result<(), String> { [INFO] [stderr] 176 + pub fn write_data(&mut self, data : &dyn NDData) -> Result<(), String> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/array/numpy.rs:546:74 [INFO] [stderr] | [INFO] [stderr] 546 | pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [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] 546 - pub fn write_data(&mut self, array : &NDData) -> Result<(), String> { [INFO] [stderr] 546 + pub fn write_data(&mut self, array : &dyn NDData) -> Result<(), String> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/backend/compute_backend.rs:26:44 [INFO] [stderr] | [INFO] [stderr] 26 | fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [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] 26 - fn set_array(&self, id : u32, array : &SizedBuffer) -> Result<(),String>; [INFO] [stderr] 26 + fn set_array(&self, id : u32, array : &dyn SizedBuffer) -> Result<(),String>; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/backend/compute_backend.rs:28:48 [INFO] [stderr] | [INFO] [stderr] 28 | fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [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] 28 - fn get_array(&self, id : u32, array : &mut SizedBufferMut) -> Result<(),String>; [INFO] [stderr] 28 + fn get_array(&self, id : u32, array : &mut dyn SizedBufferMut) -> Result<(),String>; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:48:23 [INFO] [stderr] | [INFO] [stderr] 48 | Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:62:23 [INFO] [stderr] | [INFO] [stderr] 62 | Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:93:30 [INFO] [stderr] | [INFO] [stderr] 93 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:132:34 [INFO] [stderr] | [INFO] [stderr] 132 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:166:34 [INFO] [stderr] | [INFO] [stderr] 166 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:192:34 [INFO] [stderr] | [INFO] [stderr] 192 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:203:30 [INFO] [stderr] | [INFO] [stderr] 203 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/csv.rs:210:30 [INFO] [stderr] | [INFO] [stderr] 210 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:56:25 [INFO] [stderr] | [INFO] [stderr] 56 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:63:25 [INFO] [stderr] | [INFO] [stderr] 63 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:70:25 [INFO] [stderr] | [INFO] [stderr] 70 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:77:25 [INFO] [stderr] | [INFO] [stderr] 77 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:84:25 [INFO] [stderr] | [INFO] [stderr] 84 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:91:25 [INFO] [stderr] | [INFO] [stderr] 91 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:98:25 [INFO] [stderr] | [INFO] [stderr] 98 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:105:25 [INFO] [stderr] | [INFO] [stderr] 105 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:112:25 [INFO] [stderr] | [INFO] [stderr] 112 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:119:25 [INFO] [stderr] | [INFO] [stderr] 119 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:128:33 [INFO] [stderr] | [INFO] [stderr] 128 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:131:25 [INFO] [stderr] | [INFO] [stderr] 131 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:140:33 [INFO] [stderr] | [INFO] [stderr] 140 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:143:25 [INFO] [stderr] | [INFO] [stderr] 143 | Err(e) => Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:150:32 [INFO] [stderr] | [INFO] [stderr] 150 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:157:32 [INFO] [stderr] | [INFO] [stderr] 157 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:164:32 [INFO] [stderr] | [INFO] [stderr] 164 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:171:32 [INFO] [stderr] | [INFO] [stderr] 171 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:178:32 [INFO] [stderr] | [INFO] [stderr] 178 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:185:32 [INFO] [stderr] | [INFO] [stderr] 185 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:192:32 [INFO] [stderr] | [INFO] [stderr] 192 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:199:32 [INFO] [stderr] | [INFO] [stderr] 199 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:206:32 [INFO] [stderr] | [INFO] [stderr] 206 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:213:32 [INFO] [stderr] | [INFO] [stderr] 213 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:223:40 [INFO] [stderr] | [INFO] [stderr] 223 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:226:32 [INFO] [stderr] | [INFO] [stderr] 226 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:236:40 [INFO] [stderr] | [INFO] [stderr] 236 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:239:32 [INFO] [stderr] | [INFO] [stderr] 239 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:260:29 [INFO] [stderr] | [INFO] [stderr] 260 | Err(e) => Err(e.description().to_string()), [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:267:29 [INFO] [stderr] | [INFO] [stderr] 267 | Err(e) => Err(e.description().to_string()), [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:281:26 [INFO] [stderr] | [INFO] [stderr] 281 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:288:26 [INFO] [stderr] | [INFO] [stderr] 288 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:294:30 [INFO] [stderr] | [INFO] [stderr] 294 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:301:30 [INFO] [stderr] | [INFO] [stderr] 301 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:311:26 [INFO] [stderr] | [INFO] [stderr] 311 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:315:36 [INFO] [stderr] | [INFO] [stderr] 315 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:370:44 [INFO] [stderr] | [INFO] [stderr] 370 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:382:26 [INFO] [stderr] | [INFO] [stderr] 382 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:385:26 [INFO] [stderr] | [INFO] [stderr] 385 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:429:26 [INFO] [stderr] | [INFO] [stderr] 429 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/numpy.rs:432:26 [INFO] [stderr] | [INFO] [stderr] 432 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:34:36 [INFO] [stderr] | [INFO] [stderr] 34 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:39:26 [INFO] [stderr] | [INFO] [stderr] 39 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:44:40 [INFO] [stderr] | [INFO] [stderr] 44 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:46:36 [INFO] [stderr] | [INFO] [stderr] 46 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:54:40 [INFO] [stderr] | [INFO] [stderr] 54 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:56:36 [INFO] [stderr] | [INFO] [stderr] 56 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:62:26 [INFO] [stderr] | [INFO] [stderr] 62 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:67:30 [INFO] [stderr] | [INFO] [stderr] 67 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:72:44 [INFO] [stderr] | [INFO] [stderr] 72 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:74:40 [INFO] [stderr] | [INFO] [stderr] 74 | Err(e) => return Err(e.description().to_string()) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:79:26 [INFO] [stderr] | [INFO] [stderr] 79 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:86:38 [INFO] [stderr] | [INFO] [stderr] 86 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/array/edf.rs:97:38 [INFO] [stderr] | [INFO] [stderr] 97 | return Err(e.description().to_string()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/array/mod.rs:75:24 [INFO] [stderr] | [INFO] [stderr] 75 | ... panic!(format!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0]... [INFO] [stderr] | ______________^ [INFO] [stderr] 76 | | ... i, self.shape()[0], self.shape()[i])); [INFO] [stderr] | |__________________________________________________________^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the panic!() 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] 75 ~ panic!("NDDataMut::transpose(): generic transpose only apply to data where all the dimensions length are the same, shape[0] != shape[{}] ({} != {})", [INFO] [stderr] 76 ~ i, self.shape()[0], self.shape()[i]); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/array/mod.rs:196:20 [INFO] [stderr] | [INFO] [stderr] 196 | ...c!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()... [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the panic!() 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] 196 - panic!(format!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len())); [INFO] [stderr] 196 + panic!("NDArray::from_slice({:?}, data): The size of the shape ({}) and the data ({}) doesn't match", shape, shape_size, data.len()); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/array/mod.rs:222:20 [INFO] [stderr] | [INFO] [stderr] 222 | ...nic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the panic!() 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] 222 - panic!(format!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2)); [INFO] [stderr] 222 + panic!("NDArray::reshape({:?}): New shape has a different size than the previous shape: {} != {}", new_shape, size1, size2); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `rds` (lib) generated 102 warnings [INFO] [stderr] warning: `rds` (lib test) generated 102 warnings (102 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.02s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/rds-8ada77cba6d167e2) [INFO] [stdout] [INFO] [stdout] running 67 tests [INFO] [stdout] test tests::array::assignement ... ok [INFO] [stdout] test tests::array::copy ... ok [INFO] [stdout] test tests::array::equality ... ok [INFO] [stdout] test tests::array::extract ... ok [INFO] [stdout] test tests::array::from_slice ... ok [INFO] [stdout] test tests::array::generic_transpose_3d ... ok [INFO] [stdout] test tests::array::generic_transpose_2d ... ok [INFO] [stdout] test tests::array::remove ... ok [INFO] [stdout] test tests::array::insert_split ... ok [INFO] [stdout] test tests::array::indexing ... ok [INFO] [stdout] test tests::array::insert ... ok [INFO] [stdout] test tests::blas::dot_f64 ... ok [INFO] [stdout] test tests::array::slicing ... ok [INFO] [stdout] test tests::blas::dot_c64 ... ok [INFO] [stdout] test tests::blas::gemm_f32 ... ok [INFO] [stdout] test tests::array::slicing_mut ... ok [INFO] [stdout] test tests::blas::gemm_c64 ... ok [INFO] [stdout] test tests::blas::gemv_c32 ... ok [INFO] [stdout] test tests::blas::nrm2_c32 ... ok [INFO] [stdout] test tests::blas::gemv_f32 ... ok [INFO] [stdout] test tests::blas::axpy_c64 ... ok [INFO] [stdout] test tests::blas::scal_f32 ... ok [INFO] [stdout] test tests::blas::nrm2_c64 ... ok [INFO] [stdout] test tests::blas::dot_c32 ... ok [INFO] [stdout] test tests::blas::nrm2_f32 ... ok [INFO] [stdout] test tests::types::c32 ... ok [INFO] [stdout] test tests::blas::nrm2_f64 ... ok [INFO] [stdout] test tests::blas::axpy_f32 ... ok [INFO] [stdout] test tests::blas::axpy_f64 ... ok [INFO] [stdout] test tests::blas::gemm_f64 ... ok [INFO] [stdout] test tests::blas::scal_c32 ... ok [INFO] [stdout] test tests::blas::scal_c64 ... ok [INFO] [stdout] test tests::types::display_c32 ... ok [INFO] [stdout] test tests::blas::ops_overloading ... ok [INFO] [stdout] test tests::blas::gemv_f64 ... ok [INFO] [stdout] test tests::blas::scal_f64 ... ok [INFO] [stdout] test tests::types::cast ... ok [INFO] [stdout] test tests::blas::gemv_c64 ... ok [INFO] [stdout] test tests::blas::dot_f32 ... ok [INFO] [stdout] test tests::types::c64 ... ok [INFO] [stdout] test tests::types::display_c64 ... ok [INFO] [stdout] test tests::blas::gemm_c32 ... ok [INFO] [stdout] test tests::types::fromstr_c32 ... ok [INFO] [stdout] test tests::types::fromstr_c64 ... ok [INFO] [stdout] test tests::blas::asum_c32 ... ok [INFO] [stderr] Traceback (most recent call last): [INFO] [stdout] test tests::array::transpose_3d ... ok [INFO] [stderr] File "test_vector/numpy/generate.py", line 3, in [INFO] [stdout] test tests::array::transpose_2d ... ok [INFO] [stderr] import numpy as np [INFO] [stdout] test tests::array::reshape ... ok [INFO] [stderr] ImportError: No module named numpy [INFO] [stdout] test tests::blas::asum_c64 ... ok [INFO] [stderr] Traceback (most recent call last): [INFO] [stdout] test tests::blas::asum_f32 ... ok [INFO] [stderr] File "test_vector/numpy/generate.py", line 3, in [INFO] [stdout] test tests::blas::axpy_c32 ... ok [INFO] [stderr] import numpy as np [INFO] [stdout] test tests::csv::array ... ok [INFO] [stderr] ImportError: No module named numpy [INFO] [stdout] test tests::blas::asum_f64 ... ok [INFO] [stdout] test tests::csv::columns ... ok [INFO] [stdout] test tests::csv::rows ... ok [INFO] [stdout] test tests::array::indexing_outofbound - should panic ... ok [INFO] [stdout] test tests::array::indexing_wrongdim - should panic ... ok [INFO] [stdout] test tests::array::generic_transpose_wrong_shape - should panic ... ok [INFO] [stdout] test tests::blas::dot_shouldpanic - should panic ... ok [INFO] [stdout] test tests::blas::gemm_shouldpanic - should panic ... ok [INFO] [stdout] test tests::blas::gemv_shouldpanic - should panic ... ok [INFO] [stdout] test tests::blas::axpy_shouldpanic - should panic ... ok [INFO] [stdout] test tests::numpy::write ... FAILED [INFO] [stdout] test tests::array::reshape_invalid - should panic ... ok [INFO] [stdout] test tests::numpy::read ... FAILED [INFO] [stdout] test tests::edf::edfplus_read ... ok [INFO] [stdout] test tests::edf::edf_read ... ok [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- tests::numpy::write stdout ---- [INFO] [stdout] thread 'tests::numpy::write' panicked at 'assertion failed: Command::new(\"python\").arg(\"test_vector/numpy/generate.py\").arg(TMP_DIR).status().unwrap().success()', src/tests/numpy.rs:48:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x55cc95c47c9d - std::backtrace_rs::backtrace::libunwind::trace::ha359b7f0090e2792 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x55cc95c47c9d - std::backtrace_rs::backtrace::trace_unsynchronized::h0584631f25c1d70e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x55cc95c47c9d - std::sys_common::backtrace::_print_fmt::hdadffd97d279ff14 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:66:5 [INFO] [stdout] 3: 0x55cc95c47c9d - ::fmt::h26f189e611080a74 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:45:22 [INFO] [stdout] 4: 0x55cc95c6c5cc - core::fmt::write::hfb5d11dfe037e8b7 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/fmt/mod.rs:1194:17 [INFO] [stdout] 5: 0x55cc95c44381 - std::io::Write::write_fmt::h6a24ec64406df9e2 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/io/mod.rs:1655:15 [INFO] [stdout] 6: 0x55cc95c499e5 - std::sys_common::backtrace::_print::h7a0e44402913ba60 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:48:5 [INFO] [stdout] 7: 0x55cc95c499e5 - std::sys_common::backtrace::print::h9767dc455a84e728 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:35:9 [INFO] [stdout] 8: 0x55cc95c499e5 - std::panicking::default_hook::{{closure}}::h60afd6c8b12988ad [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:295:22 [INFO] [stdout] 9: 0x55cc95c496d4 - std::panicking::default_hook::ha7b9bac6813f9d21 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:311:9 [INFO] [stdout] 10: 0x55cc95c49f32 - std::panicking::rust_panic_with_hook::h7b117a162a6f8664 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:698:17 [INFO] [stdout] 11: 0x55cc95c49dd9 - std::panicking::begin_panic_handler::{{closure}}::h346750923c608600 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:586:13 [INFO] [stdout] 12: 0x55cc95c48154 - std::sys_common::backtrace::__rust_end_short_backtrace::h768c56c6a0c055c0 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:138:18 [INFO] [stdout] 13: 0x55cc95c49b49 - rust_begin_unwind [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:584:5 [INFO] [stdout] 14: 0x55cc95b6f3e3 - core::panicking::panic_fmt::h5c41cb2fa118fdbc [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panicking.rs:143:14 [INFO] [stdout] 15: 0x55cc95b6f2ad - core::panicking::panic::h19a70c01bbabd538 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x55cc95bcd5c3 - rds::tests::numpy::write::h722bdad82e73dc92 [INFO] [stdout] at /opt/rustwide/workdir/src/tests/numpy.rs:48:5 [INFO] [stdout] 17: 0x55cc95bcd43a - rds::tests::numpy::write::{{closure}}::h9dec4be31c155bd1 [INFO] [stdout] at /opt/rustwide/workdir/src/tests/numpy.rs:46:1 [INFO] [stdout] 18: 0x55cc95bd878e - core::ops::function::FnOnce::call_once::h401a3545126b2157 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 19: 0x55cc95c129e3 - core::ops::function::FnOnce::call_once::h018fc248431ce8de [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 20: 0x55cc95c129e3 - test::__rust_begin_short_backtrace::h293b982b6069d6e3 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:574:5 [INFO] [stdout] 21: 0x55cc95c11799 - as core::ops::function::FnOnce>::call_once::h4fc1be1a762c7a46 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 22: 0x55cc95c11799 - as core::ops::function::FnOnce<()>>::call_once::hd44623ec51b9e897 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panic/unwind_safe.rs:271:9 [INFO] [stdout] 23: 0x55cc95c11799 - std::panicking::try::do_call::ha8cfa4b025f5b832 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:492:40 [INFO] [stdout] 24: 0x55cc95c11799 - std::panicking::try::h664f75e41c112145 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:456:19 [INFO] [stdout] 25: 0x55cc95c11799 - std::panic::catch_unwind::h4932ec05cd60558e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panic.rs:137:14 [INFO] [stdout] 26: 0x55cc95c11799 - test::run_test_in_process::ha14a47756671755c [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:597:18 [INFO] [stdout] 27: 0x55cc95c11799 - test::run_test::run_test_inner::{{closure}}::h0ec9e37c8f67b62d [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:491:39 [INFO] [stdout] 28: 0x55cc95bdd94e - test::run_test::run_test_inner::{{closure}}::hd9d2e7f26d4f59e6 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:518:37 [INFO] [stdout] 29: 0x55cc95bdd94e - std::sys_common::backtrace::__rust_begin_short_backtrace::h41c0a39fac5123f8 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:122:18 [INFO] [stdout] 30: 0x55cc95be2eb8 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h69a02ca0bebb6eeb [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/thread/mod.rs:498:17 [INFO] [stdout] 31: 0x55cc95be2eb8 - as core::ops::function::FnOnce<()>>::call_once::hdd05632920ce689b [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panic/unwind_safe.rs:271:9 [INFO] [stdout] 32: 0x55cc95be2eb8 - std::panicking::try::do_call::hb4947142729b90fd [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:492:40 [INFO] [stdout] 33: 0x55cc95be2eb8 - std::panicking::try::h15a7e9b8394e6878 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:456:19 [INFO] [stdout] 34: 0x55cc95be2eb8 - std::panic::catch_unwind::hbd3f4a3f9df49b85 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panic.rs:137:14 [INFO] [stdout] 35: 0x55cc95be2eb8 - std::thread::Builder::spawn_unchecked_::{{closure}}::h880b5d5f1b9799f4 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/thread/mod.rs:497:30 [INFO] [stdout] 36: 0x55cc95be2eb8 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h304d5eaf401f5061 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 37: 0x55cc95c4ebc3 - as core::ops::function::FnOnce>::call_once::hdba7f2afed0c35b3 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 38: 0x55cc95c4ebc3 - as core::ops::function::FnOnce>::call_once::h38b0832765bf7961 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 39: 0x55cc95c4ebc3 - std::sys::unix::thread::Thread::new::thread_start::h70236dc17753425e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys/unix/thread.rs:108:17 [INFO] [stdout] 40: 0x7f4c8af08609 - start_thread [INFO] [stdout] 41: 0x7f4c8acd8163 - clone [INFO] [stdout] 42: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::numpy::read stdout ---- [INFO] [stdout] thread 'tests::numpy::read' panicked at 'assertion failed: Command::new(\"python\").arg(\"test_vector/numpy/generate.py\").arg(TMP_DIR).status().unwrap().success()', src/tests/numpy.rs:10:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x55cc95c47c9d - std::backtrace_rs::backtrace::libunwind::trace::ha359b7f0090e2792 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5 [INFO] [stdout] 1: 0x55cc95c47c9d - std::backtrace_rs::backtrace::trace_unsynchronized::h0584631f25c1d70e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5 [INFO] [stdout] 2: 0x55cc95c47c9d - std::sys_common::backtrace::_print_fmt::hdadffd97d279ff14 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:66:5 [INFO] [stdout] 3: 0x55cc95c47c9d - ::fmt::h26f189e611080a74 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:45:22 [INFO] [stdout] 4: 0x55cc95c6c5cc - core::fmt::write::hfb5d11dfe037e8b7 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/fmt/mod.rs:1194:17 [INFO] [stdout] 5: 0x55cc95c44381 - std::io::Write::write_fmt::h6a24ec64406df9e2 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/io/mod.rs:1655:15 [INFO] [stdout] 6: 0x55cc95c499e5 - std::sys_common::backtrace::_print::h7a0e44402913ba60 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:48:5 [INFO] [stdout] 7: 0x55cc95c499e5 - std::sys_common::backtrace::print::h9767dc455a84e728 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:35:9 [INFO] [stdout] 8: 0x55cc95c499e5 - std::panicking::default_hook::{{closure}}::h60afd6c8b12988ad [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:295:22 [INFO] [stdout] 9: 0x55cc95c496d4 - std::panicking::default_hook::ha7b9bac6813f9d21 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:311:9 [INFO] [stdout] 10: 0x55cc95c49f32 - std::panicking::rust_panic_with_hook::h7b117a162a6f8664 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:698:17 [INFO] [stdout] 11: 0x55cc95c49dd9 - std::panicking::begin_panic_handler::{{closure}}::h346750923c608600 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:586:13 [INFO] [stdout] 12: 0x55cc95c48154 - std::sys_common::backtrace::__rust_end_short_backtrace::h768c56c6a0c055c0 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:138:18 [INFO] [stdout] 13: 0x55cc95c49b49 - rust_begin_unwind [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:584:5 [INFO] [stdout] 14: 0x55cc95b6f3e3 - core::panicking::panic_fmt::h5c41cb2fa118fdbc [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panicking.rs:143:14 [INFO] [stdout] 15: 0x55cc95b6f2ad - core::panicking::panic::h19a70c01bbabd538 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panicking.rs:48:5 [INFO] [stdout] 16: 0x55cc95bcc233 - rds::tests::numpy::read::h6f4e6e5e52d5c64a [INFO] [stdout] at /opt/rustwide/workdir/src/tests/numpy.rs:10:5 [INFO] [stdout] 17: 0x55cc95bcc0aa - rds::tests::numpy::read::{{closure}}::hd0cb87a1ddebfa5b [INFO] [stdout] at /opt/rustwide/workdir/src/tests/numpy.rs:8:1 [INFO] [stdout] 18: 0x55cc95bd931e - core::ops::function::FnOnce::call_once::hdad7b958af7e13df [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 19: 0x55cc95c129e3 - core::ops::function::FnOnce::call_once::h018fc248431ce8de [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 20: 0x55cc95c129e3 - test::__rust_begin_short_backtrace::h293b982b6069d6e3 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:574:5 [INFO] [stdout] 21: 0x55cc95c11799 - as core::ops::function::FnOnce>::call_once::h4fc1be1a762c7a46 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 22: 0x55cc95c11799 - as core::ops::function::FnOnce<()>>::call_once::hd44623ec51b9e897 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panic/unwind_safe.rs:271:9 [INFO] [stdout] 23: 0x55cc95c11799 - std::panicking::try::do_call::ha8cfa4b025f5b832 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:492:40 [INFO] [stdout] 24: 0x55cc95c11799 - std::panicking::try::h664f75e41c112145 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:456:19 [INFO] [stdout] 25: 0x55cc95c11799 - std::panic::catch_unwind::h4932ec05cd60558e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panic.rs:137:14 [INFO] [stdout] 26: 0x55cc95c11799 - test::run_test_in_process::ha14a47756671755c [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:597:18 [INFO] [stdout] 27: 0x55cc95c11799 - test::run_test::run_test_inner::{{closure}}::h0ec9e37c8f67b62d [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:491:39 [INFO] [stdout] 28: 0x55cc95bdd94e - test::run_test::run_test_inner::{{closure}}::hd9d2e7f26d4f59e6 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/test/src/lib.rs:518:37 [INFO] [stdout] 29: 0x55cc95bdd94e - std::sys_common::backtrace::__rust_begin_short_backtrace::h41c0a39fac5123f8 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys_common/backtrace.rs:122:18 [INFO] [stdout] 30: 0x55cc95be2eb8 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h69a02ca0bebb6eeb [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/thread/mod.rs:498:17 [INFO] [stdout] 31: 0x55cc95be2eb8 - as core::ops::function::FnOnce<()>>::call_once::hdd05632920ce689b [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/panic/unwind_safe.rs:271:9 [INFO] [stdout] 32: 0x55cc95be2eb8 - std::panicking::try::do_call::hb4947142729b90fd [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:492:40 [INFO] [stdout] 33: 0x55cc95be2eb8 - std::panicking::try::h15a7e9b8394e6878 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panicking.rs:456:19 [INFO] [stdout] 34: 0x55cc95be2eb8 - std::panic::catch_unwind::hbd3f4a3f9df49b85 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/panic.rs:137:14 [INFO] [stdout] 35: 0x55cc95be2eb8 - std::thread::Builder::spawn_unchecked_::{{closure}}::h880b5d5f1b9799f4 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/thread/mod.rs:497:30 [INFO] [stdout] 36: 0x55cc95be2eb8 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h304d5eaf401f5061 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/core/src/ops/function.rs:227:5 [INFO] [stdout] 37: 0x55cc95c4ebc3 - as core::ops::function::FnOnce>::call_once::hdba7f2afed0c35b3 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 38: 0x55cc95c4ebc3 - as core::ops::function::FnOnce>::call_once::h38b0832765bf7961 [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/alloc/src/boxed.rs:1861:9 [INFO] [stdout] 39: 0x55cc95c4ebc3 - std::sys::unix::thread::Thread::new::thread_start::h70236dc17753425e [INFO] [stdout] at /rustc/7c13df853721b60a03e7c0bb084d2eb1e27a9caa/library/std/src/sys/unix/thread.rs:108:17 [INFO] [stdout] 40: 0x7f4c8af08609 - start_thread [INFO] [stdout] 41: 0x7f4c8acd8163 - clone [INFO] [stdout] 42: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] tests::numpy::read [INFO] [stdout] tests::numpy::write [INFO] [stdout] [INFO] [stdout] test result: FAILED. 65 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.29s [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--lib' [INFO] running `Command { std: "docker" "inspect" "6c4cf64f962a239a319178e9b0388aa695ca6ec1a9beae8b219f2be91f82b296", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "6c4cf64f962a239a319178e9b0388aa695ca6ec1a9beae8b219f2be91f82b296", kill_on_drop: false }` [INFO] [stdout] 6c4cf64f962a239a319178e9b0388aa695ca6ec1a9beae8b219f2be91f82b296