[INFO] fetching crate stfu8 0.2.5... [INFO] testing stfu8-0.2.5 against 1.60.0 for beta-1.61-1 [INFO] extracting crate stfu8 0.2.5 into /workspace/builds/worker-7/source [INFO] validating manifest of crates.io crate stfu8 0.2.5 on toolchain 1.60.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate stfu8 0.2.5 [INFO] finished tweaking crates.io crate stfu8 0.2.5 [INFO] tweaked toml for crates.io crate stfu8 0.2.5 written to /workspace/builds/worker-7/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] b7f4f3d48aa50dabd03a366219d09d09f3c17dcb8b4cb6cc9cff3b3d3a422036 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "b7f4f3d48aa50dabd03a366219d09d09f3c17dcb8b4cb6cc9cff3b3d3a422036", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "b7f4f3d48aa50dabd03a366219d09d09f3c17dcb8b4cb6cc9cff3b3d3a422036", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "b7f4f3d48aa50dabd03a366219d09d09f3c17dcb8b4cb6cc9cff3b3d3a422036", kill_on_drop: false }` [INFO] [stdout] b7f4f3d48aa50dabd03a366219d09d09f3c17dcb8b4cb6cc9cff3b3d3a422036 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 63b0f0a8a3a2815aa48402f49ae3fd5a7cd7f5688354e16b67d6e664cebb070d [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "63b0f0a8a3a2815aa48402f49ae3fd5a7cd7f5688354e16b67d6e664cebb070d", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling stfu8 v0.2.5 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/helpers.rs:29:31 [INFO] [stdout] | [INFO] [stdout] 29 | const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 29 - const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] 29 + const SURROGATE_OFFSET: i64 = 0x1_0000 - (0xD800 << 10) - 0xDC00; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(ellipsis_inclusive_range_patterns)]` 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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:100:36 [INFO] [stdout] | [INFO] [stdout] 100 | (0xE0, 0xA0...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:32 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:45 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:102:38 [INFO] [stdout] | [INFO] [stdout] 102 | | (0xED, 0x80...0x9F) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:32 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:45 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:36 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:52 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:65 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:87 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:39:17 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | helpers::BSLASH_U16 => helpers::escape_u8(&mut out, encoder, c16 as u8), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:41:21 [INFO] [stdout] | [INFO] [stdout] 41 | LEAD_MIN...LEAD_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:62:22 [INFO] [stdout] | [INFO] [stdout] 62 | TRAIL_MIN...TRAIL_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/decode.rs:121:72 [INFO] [stdout] | [INFO] [stdout] 121 | write!(f, "{} when decoding {:?} [index={}]", self.index, self.description(), self.mat) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unreachable_patterns)]` on by default [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 71 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.55s [INFO] running `Command { std: "docker" "inspect" "63b0f0a8a3a2815aa48402f49ae3fd5a7cd7f5688354e16b67d6e664cebb070d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "63b0f0a8a3a2815aa48402f49ae3fd5a7cd7f5688354e16b67d6e664cebb070d", kill_on_drop: false }` [INFO] [stdout] 63b0f0a8a3a2815aa48402f49ae3fd5a7cd7f5688354e16b67d6e664cebb070d [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] f8f7700ad32181de8fd5d2da52119d6765ee08b49ec0a307714abaa60c8f06d8 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "f8f7700ad32181de8fd5d2da52119d6765ee08b49ec0a307714abaa60c8f06d8", kill_on_drop: false }` [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/helpers.rs:29:31 [INFO] [stdout] | [INFO] [stdout] 29 | const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 29 - const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] 29 + const SURROGATE_OFFSET: i64 = 0x1_0000 - (0xD800 << 10) - 0xDC00; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(ellipsis_inclusive_range_patterns)]` 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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:100:36 [INFO] [stdout] | [INFO] [stdout] 100 | (0xE0, 0xA0...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:32 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:45 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:102:38 [INFO] [stdout] | [INFO] [stdout] 102 | | (0xED, 0x80...0x9F) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:32 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:45 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:36 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:52 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:65 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:87 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling proptest v1.0.0 [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:39:17 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | helpers::BSLASH_U16 => helpers::escape_u8(&mut out, encoder, c16 as u8), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:41:21 [INFO] [stdout] | [INFO] [stdout] 41 | LEAD_MIN...LEAD_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:62:22 [INFO] [stdout] | [INFO] [stdout] 62 | TRAIL_MIN...TRAIL_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/decode.rs:121:72 [INFO] [stdout] | [INFO] [stdout] 121 | write!(f, "{} when decoding {:?} [index={}]", self.index, self.description(), self.mat) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unreachable_patterns)]` on by default [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 71 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling stfu8 v0.2.5 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> tests/sanity.rs:101:49 [INFO] [stdout] | [INFO] [stdout] 101 | assert_round_str("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stdout] | ^ help: remove this semicolon [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/helpers.rs:29:31 [INFO] [stdout] | [INFO] [stdout] 29 | const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 29 - const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stdout] 29 + const SURROGATE_OFFSET: i64 = 0x1_0000 - (0xD800 << 10) - 0xDC00; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(ellipsis_inclusive_range_patterns)]` 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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:100:36 [INFO] [stdout] | [INFO] [stdout] 100 | (0xE0, 0xA0...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:32 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:101:45 [INFO] [stdout] | [INFO] [stdout] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:102:38 [INFO] [stdout] | [INFO] [stdout] 102 | | (0xED, 0x80...0x9F) [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:32 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:103:45 [INFO] [stdout] | [INFO] [stdout] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:36 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:52 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:65 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:112:87 [INFO] [stdout] | [INFO] [stdout] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:38:21 [INFO] [stdout] | [INFO] [stdout] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:21 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u8.rs:39:35 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> src/encode_u8.rs:179:43 [INFO] [stdout] | [INFO] [stdout] 179 | assert_enc("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stdout] | ^ help: remove this semicolon [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:39:17 [INFO] [stdout] | [INFO] [stdout] 39 | 0x00...0x1F | helpers::BSLASH_U16 => helpers::escape_u8(&mut out, encoder, c16 as u8), [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:41:21 [INFO] [stdout] | [INFO] [stdout] 41 | LEAD_MIN...LEAD_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: `...` range patterns are deprecated [INFO] [stdout] --> src/encode_u16.rs:62:22 [INFO] [stdout] | [INFO] [stdout] 62 | TRAIL_MIN...TRAIL_MAX => { [INFO] [stdout] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stdout] [INFO] [stdout] warning: unnecessary trailing semicolon [INFO] [stdout] --> src/encode_u16.rs:99:43 [INFO] [stdout] | [INFO] [stdout] 99 | assert_enc("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stdout] | ^ help: remove this semicolon [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/decode.rs:121:72 [INFO] [stdout] | [INFO] [stdout] 121 | write!(f, "{} when decoding {:?} [index={}]", self.index, self.description(), self.mat) [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unreachable_patterns)]` on by default [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 99 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 111 | match (first, next!()) { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stdout] | ------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stdout] | -------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unreachable pattern [INFO] [stdout] --> src/encode_u8.rs:40:17 [INFO] [stdout] | [INFO] [stdout] 40 | _ => unreachable!(), [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 129 | maybe_ascii!(index); [INFO] [stdout] | ------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 73 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 19.82s [INFO] running `Command { std: "docker" "inspect" "f8f7700ad32181de8fd5d2da52119d6765ee08b49ec0a307714abaa60c8f06d8", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f8f7700ad32181de8fd5d2da52119d6765ee08b49ec0a307714abaa60c8f06d8", kill_on_drop: false }` [INFO] [stdout] f8f7700ad32181de8fd5d2da52119d6765ee08b49ec0a307714abaa60c8f06d8 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 0b7468839bc02c54b90b0eb5efebfdd2ba12e9d052911215ae216f97ed28db9c [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "0b7468839bc02c54b90b0eb5efebfdd2ba12e9d052911215ae216f97ed28db9c", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/helpers.rs:29:31 [INFO] [stderr] | [INFO] [stderr] 29 | const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 29 - const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stderr] 29 + const SURROGATE_OFFSET: i64 = 0x1_0000 - (0xD800 << 10) - 0xDC00; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` 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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:100:36 [INFO] [stderr] | [INFO] [stderr] 100 | (0xE0, 0xA0...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:101:32 [INFO] [stderr] | [INFO] [stderr] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:101:45 [INFO] [stderr] | [INFO] [stderr] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:102:38 [INFO] [stderr] | [INFO] [stderr] 102 | | (0xED, 0x80...0x9F) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:103:32 [INFO] [stderr] | [INFO] [stderr] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:103:45 [INFO] [stderr] | [INFO] [stderr] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:112:36 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:112:52 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:112:65 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:112:87 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u16.rs:39:17 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | helpers::BSLASH_U16 => helpers::escape_u8(&mut out, encoder, c16 as u8), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u16.rs:41:21 [INFO] [stderr] | [INFO] [stderr] 41 | LEAD_MIN...LEAD_MAX => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/encode_u16.rs:62:22 [INFO] [stderr] | [INFO] [stderr] 62 | TRAIL_MIN...TRAIL_MAX => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/decode.rs:121:72 [INFO] [stderr] | [INFO] [stderr] 121 | write!(f, "{} when decoding {:?} [index={}]", self.index, self.description(), self.mat) [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unreachable_patterns)]` on by default [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unreachable pattern [INFO] [stderr] --> src/encode_u8.rs:40:17 [INFO] [stderr] | [INFO] [stderr] 40 | _ => unreachable!(), [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `stfu8` (lib) generated 71 warnings [INFO] [stderr] warning: unnecessary trailing semicolon [INFO] [stderr] --> src/encode_u8.rs:179:43 [INFO] [stderr] | [INFO] [stderr] 179 | assert_enc("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stderr] | ^ help: remove this semicolon [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary trailing semicolon [INFO] [stderr] --> src/encode_u16.rs:99:43 [INFO] [stderr] | [INFO] [stderr] 99 | assert_enc("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stderr] | ^ help: remove this semicolon [INFO] [stderr] [INFO] [stderr] warning: unnecessary trailing semicolon [INFO] [stderr] --> tests/sanity.rs:101:49 [INFO] [stderr] | [INFO] [stderr] 101 | assert_round_str("‑ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “");; [INFO] [stderr] | ^ help: remove this semicolon [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(redundant_semicolons)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `stfu8` (lib test) generated 73 warnings (71 duplicates) [INFO] [stderr] warning: `stfu8` (test "sanity") generated 1 warning [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.11s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/stfu8-17a7bac557ccbb20) [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test encode_u8::sanity_encode_binary ... ok [INFO] [stdout] test encode_u16::sanity_encode ... ok [INFO] [stdout] test encode_u8::sanity_encode_pretty ... ok [INFO] [stdout] test helpers::tests::sanity_utf_conversion ... ok [INFO] [stdout] test encode_u8::sanity_encode ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Running tests/fuzz.rs (/opt/rustwide/target/debug/deps/fuzz-fe3deadf4f6c3f0a) [INFO] [stdout] [INFO] [stdout] running 4 tests [INFO] [stdout] test fuzz_u16_binary ... ok [INFO] [stdout] test fuzz_all_unicode ... ok [INFO] [stdout] test fuzz_u32_illformed ... ok [INFO] [stdout] test fuzz_u8_binary ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.50s [INFO] [stdout] [INFO] [stderr] Running tests/sanity.rs (/opt/rustwide/target/debug/deps/sanity-39242a091b2c70ca) [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test sanity_roundtrip ... ok [INFO] [stdout] test sanity_supplimentary ... ok [INFO] [stdout] test sanity_u8_decode ... ok [INFO] [stdout] test sanity_sample_2_0 ... ok [INFO] [stdout] test sanity_sample_3_2 ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.07s [INFO] [stdout] [INFO] [stderr] Doc-tests stfu8 [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/helpers.rs:29:31 [INFO] [stderr] | [INFO] [stderr] 29 | const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 29 - const SURROGATE_OFFSET: i64 = (0x1_0000 - (0xD800 << 10) - 0xDC00); [INFO] [stderr] 29 + const SURROGATE_OFFSET: i64 = 0x1_0000 - (0xD800 << 10) - 0xDC00; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` 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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 94 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 95 | escape_them!(); //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 99 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:100:36 [INFO] [stderr] | [INFO] [stderr] 100 | (0xE0, 0xA0...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:101:32 [INFO] [stderr] | [INFO] [stderr] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:101:45 [INFO] [stderr] | [INFO] [stderr] 101 | | (0xE1...0xEC, 0x80...0xBF) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:102:38 [INFO] [stderr] | [INFO] [stderr] 102 | | (0xED, 0x80...0x9F) [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:103:32 [INFO] [stderr] | [INFO] [stderr] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:103:45 [INFO] [stderr] | [INFO] [stderr] 103 | | (0xEE...0xEF, 0x80...0xBF) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 104 | _ => escape_them!(), // orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 106 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 107 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 111 | match (first, next!()) { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:112:36 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:112:52 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:112:65 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:112:87 [INFO] [stderr] | [INFO] [stderr] 112 | (0xF0, 0x90...0xBF) | (0xF1...0xF3, 0x80...0xBF) | (0xF4, 0x80...0x8F) => {} [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 113 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 115 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 116 | escape_them!(); //orig: err!(Some(2)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 118 | if next!() & !CONT_MASK != TAG_CONT_U8 { [INFO] [stderr] | ------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 119 | escape_them!(); //orig: err!(Some(3)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 122 | _ => escape_them!(), //orig: err!(Some(1)) [INFO] [stderr] | -------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:38:21 [INFO] [stderr] | [INFO] [stderr] 38 | 0x20...0x7e => out.push(b as char), // visible ASCII [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:21 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u8.rs:39:35 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | 0x7f...0xFF => helpers::escape_u8(&mut out, encoder, b), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] ... [INFO] [stderr] 129 | maybe_ascii!(index); [INFO] [stderr] | ------------------- in this macro invocation [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] = note: this warning originates in the macro `maybe_ascii` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u16.rs:39:17 [INFO] [stderr] | [INFO] [stderr] 39 | 0x00...0x1F | helpers::BSLASH_U16 => helpers::escape_u8(&mut out, encoder, c16 as u8), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u16.rs:41:21 [INFO] [stderr] | [INFO] [stderr] 41 | LEAD_MIN...LEAD_MAX => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/workdir/src/encode_u16.rs:62:22 [INFO] [stderr] | [INFO] [stderr] 62 | TRAIL_MIN...TRAIL_MAX => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [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] [INFO] [stderr] warning: 56 warnings emitted [INFO] [stderr] [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stdout] test src/lib.rs - encode_u16 (line 106) ... ok [INFO] [stdout] test src/lib.rs - encode_u8 (line 51) ... ok [INFO] [stdout] test src/lib.rs - encode_u8_pretty (line 82) ... ok [INFO] [stdout] test src/lib.rs - encode_u16_pretty (line 150) ... ok [INFO] [stdout] test src/lib.rs - decode_u16 (line 244) ... ok [INFO] [stdout] test src/lib.rs - decode_u8 (line 192) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 6.13s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "0b7468839bc02c54b90b0eb5efebfdd2ba12e9d052911215ae216f97ed28db9c", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0b7468839bc02c54b90b0eb5efebfdd2ba12e9d052911215ae216f97ed28db9c", kill_on_drop: false }` [INFO] [stdout] 0b7468839bc02c54b90b0eb5efebfdd2ba12e9d052911215ae216f97ed28db9c