[INFO] cloning repository https://github.com/seaneshbaugh/integrity_check [INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/seaneshbaugh/integrity_check" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fseaneshbaugh%2Fintegrity_check", kill_on_drop: false }` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fseaneshbaugh%2Fintegrity_check'... [INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }` [INFO] [stdout] 5f9a7ad1733c4b6e8ef65ef9078b214834dc0626 [INFO] testing seaneshbaugh/integrity_check against 1.60.0 for beta-1.61-1 [INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fseaneshbaugh%2Fintegrity_check" "/workspace/builds/worker-65/source", kill_on_drop: false }` [INFO] [stderr] Cloning into '/workspace/builds/worker-65/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/seaneshbaugh/integrity_check 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 git repo https://github.com/seaneshbaugh/integrity_check [INFO] finished tweaking git repo https://github.com/seaneshbaugh/integrity_check [INFO] tweaked toml for git repo https://github.com/seaneshbaugh/integrity_check written to /workspace/builds/worker-65/source/Cargo.toml [INFO] crate git repo https://github.com/seaneshbaugh/integrity_check already has a lockfile, it will not be regenerated [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 5ff48021cca73a82b63399dabb7e4374e9aeaa3e6d2ad2e3f48484763484a392 [INFO] running `Command { std: "docker" "start" "-a" "5ff48021cca73a82b63399dabb7e4374e9aeaa3e6d2ad2e3f48484763484a392", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "5ff48021cca73a82b63399dabb7e4374e9aeaa3e6d2ad2e3f48484763484a392", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5ff48021cca73a82b63399dabb7e4374e9aeaa3e6d2ad2e3f48484763484a392", kill_on_drop: false }` [INFO] [stdout] 5ff48021cca73a82b63399dabb7e4374e9aeaa3e6d2ad2e3f48484763484a392 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 0359e473dca7fdea74262ea4585ae8240facdc9122961ad4cdb08e92892eb723 [INFO] running `Command { std: "docker" "start" "-a" "0359e473dca7fdea74262ea4585ae8240facdc9122961ad4cdb08e92892eb723", kill_on_drop: false }` [INFO] [stderr] Compiling lazy_static v0.1.16 [INFO] [stderr] Compiling integrity_check v0.0.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.93s [INFO] running `Command { std: "docker" "inspect" "0359e473dca7fdea74262ea4585ae8240facdc9122961ad4cdb08e92892eb723", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0359e473dca7fdea74262ea4585ae8240facdc9122961ad4cdb08e92892eb723", kill_on_drop: false }` [INFO] [stdout] 0359e473dca7fdea74262ea4585ae8240facdc9122961ad4cdb08e92892eb723 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 39698c007bd5e5a84d06925c7d8bb6b3789ad589527c751b8d0a77bd7573af93 [INFO] running `Command { std: "docker" "start" "-a" "39698c007bd5e5a84d06925c7d8bb6b3789ad589527c751b8d0a77bd7573af93", kill_on_drop: false }` [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling integrity_check v0.0.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> src/digest/crc32.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | / lazy_static! { [INFO] [stdout] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stdout] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stdout] 4 | | [INFO] [stdout] ... | [INFO] [stdout] 24 | | }; [INFO] [stdout] 25 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stdout] --> tests/test.rs:20:1 [INFO] [stdout] | [INFO] [stdout] 20 | / lazy_static! { [INFO] [stdout] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stdout] 22 | | include_str!("small-test-file.txt") [INFO] [stdout] 23 | | }; [INFO] [stdout] ... | [INFO] [stdout] 152 | | }; [INFO] [stdout] 153 | | } [INFO] [stdout] | |_^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 28 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.55s [INFO] running `Command { std: "docker" "inspect" "39698c007bd5e5a84d06925c7d8bb6b3789ad589527c751b8d0a77bd7573af93", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "39698c007bd5e5a84d06925c7d8bb6b3789ad589527c751b8d0a77bd7573af93", kill_on_drop: false }` [INFO] [stdout] 39698c007bd5e5a84d06925c7d8bb6b3789ad589527c751b8d0a77bd7573af93 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-65/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 64eed58556157f15dcc013d8aa958510538e5349b095478f8640b7d583be58e9 [INFO] running `Command { std: "docker" "start" "-a" "64eed58556157f15dcc013d8aa958510538e5349b095478f8640b7d583be58e9", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stderr] --> src/digest/crc32.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | / lazy_static! { [INFO] [stderr] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stderr] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stderr] 4 | | [INFO] [stderr] ... | [INFO] [stderr] 24 | | }; [INFO] [stderr] 25 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stderr] --> src/digest/crc32.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | / lazy_static! { [INFO] [stderr] 2 | | static ref LOOKUP_TABLE: [u32; 256] = { [INFO] [stderr] 3 | | let mut table: [u32; 256] = [0; 256]; [INFO] [stderr] 4 | | [INFO] [stderr] ... | [INFO] [stderr] 24 | | }; [INFO] [stderr] 25 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `integrity_check` (lib) generated 2 warnings [INFO] [stderr] warning: `integrity_check` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stderr] --> tests/test.rs:20:1 [INFO] [stderr] | [INFO] [stderr] 20 | / lazy_static! { [INFO] [stderr] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stderr] 22 | | include_str!("small-test-file.txt") [INFO] [stderr] 23 | | }; [INFO] [stderr] ... | [INFO] [stderr] 152 | | }; [INFO] [stderr] 153 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred [INFO] [stderr] --> tests/test.rs:20:1 [INFO] [stderr] | [INFO] [stderr] 20 | / lazy_static! { [INFO] [stderr] 21 | | static ref SMALL_TEST_FILE_CONTENTS: &'static str = { [INFO] [stderr] 22 | | include_str!("small-test-file.txt") [INFO] [stderr] 23 | | }; [INFO] [stderr] ... | [INFO] [stderr] 152 | | }; [INFO] [stderr] 153 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `integrity_check` (test "test") generated 28 warnings (26 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.71s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/integrity_check-76f8ef95b28a7a17) [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/integrity_check-c4cef43e6d83babf) [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Running tests/test.rs (/opt/rustwide/target/debug/deps/test-fa3c2a6f300adbad) [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 11 tests [INFO] [stdout] test test_crc32 ... ok [INFO] [stdout] test test_md5 ... ok [INFO] [stdout] test test_sha2_512 ... ok [INFO] [stdout] test test_sha2_256 ... ok [INFO] [stdout] test test_sha1 ... ok [INFO] [stdout] test test_sha2_384 ... ok [INFO] [stdout] test test_sha2_224 ... ok [INFO] [stdout] test test_sha3_256 ... ok [INFO] [stdout] test test_sha3_224 ... ok [INFO] [stdout] test test_sha3_384 ... ok [INFO] [stdout] test test_sha3_512 ... ok [INFO] [stderr] Doc-tests integrity_check [INFO] [stdout] [INFO] [stdout] test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.17s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "64eed58556157f15dcc013d8aa958510538e5349b095478f8640b7d583be58e9", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "64eed58556157f15dcc013d8aa958510538e5349b095478f8640b7d583be58e9", kill_on_drop: false }` [INFO] [stdout] 64eed58556157f15dcc013d8aa958510538e5349b095478f8640b7d583be58e9