[INFO] fetching crate r2fa 0.5.0... [INFO] testing r2fa-0.5.0 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate r2fa 0.5.0 into /workspace/builds/worker-5/source [INFO] validating manifest of crates.io crate r2fa 0.5.0 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate r2fa 0.5.0 [INFO] finished tweaking crates.io crate r2fa 0.5.0 [INFO] tweaked toml for crates.io crate r2fa 0.5.0 written to /workspace/builds/worker-5/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] a9d37ef2cfc4e69e87a5b9ce6a7f88bfc6627a7fd5329f435c3e20fd004ebbcc [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" "a9d37ef2cfc4e69e87a5b9ce6a7f88bfc6627a7fd5329f435c3e20fd004ebbcc", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "a9d37ef2cfc4e69e87a5b9ce6a7f88bfc6627a7fd5329f435c3e20fd004ebbcc", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a9d37ef2cfc4e69e87a5b9ce6a7f88bfc6627a7fd5329f435c3e20fd004ebbcc", kill_on_drop: false }` [INFO] [stdout] a9d37ef2cfc4e69e87a5b9ce6a7f88bfc6627a7fd5329f435c3e20fd004ebbcc [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 0f94a74e6a83ab7b5287385311cc27c352754524ea44152a1a3f1929aca2639c [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" "0f94a74e6a83ab7b5287385311cc27c352754524ea44152a1a3f1929aca2639c", kill_on_drop: false }` [INFO] [stderr] Compiling base32 v0.3.1 [INFO] [stderr] Compiling rust-crypto v0.2.36 [INFO] [stderr] Compiling r2fa v0.5.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/hotp.rs:70:30 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!("{}", e), [INFO] [stdout] | +++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 9.65s [INFO] running `Command { std: "docker" "inspect" "0f94a74e6a83ab7b5287385311cc27c352754524ea44152a1a3f1929aca2639c", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0f94a74e6a83ab7b5287385311cc27c352754524ea44152a1a3f1929aca2639c", kill_on_drop: false }` [INFO] [stdout] 0f94a74e6a83ab7b5287385311cc27c352754524ea44152a1a3f1929aca2639c [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 352ea4c25eca4a3d6762c2b0ab56db580c870fa47943996f531722257b130696 [INFO] running `Command { std: "docker" "start" "-a" "352ea4c25eca4a3d6762c2b0ab56db580c870fa47943996f531722257b130696", kill_on_drop: false }` [INFO] [stderr] Compiling r2fa v0.5.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/hotp.rs:70:30 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!("{}", e), [INFO] [stdout] | +++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/hotp.rs:70:30 [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => panic!("{}", e), [INFO] [stdout] | +++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 70 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:67:30 [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 67 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/otp/totp.rs:93:30 [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!(e), [INFO] [stdout] | ^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => panic!("{:?}", e), [INFO] [stdout] | +++++++ [INFO] [stdout] help: or use std::panic::panic_any instead [INFO] [stdout] | [INFO] [stdout] 93 | Err(e) => std::panic::panic_any(e), [INFO] [stdout] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.01s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/r2fa-c19238cc5ed601c9) [INFO] running `Command { std: "docker" "inspect" "352ea4c25eca4a3d6762c2b0ab56db580c870fa47943996f531722257b130696", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "352ea4c25eca4a3d6762c2b0ab56db580c870fa47943996f531722257b130696", kill_on_drop: false }` [INFO] [stdout] 352ea4c25eca4a3d6762c2b0ab56db580c870fa47943996f531722257b130696 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 454a519e8419efe2fbe6b89cf28356c7443a198271b3bedef399a4832256f4b7 [INFO] running `Command { std: "docker" "start" "-a" "454a519e8419efe2fbe6b89cf28356c7443a198271b3bedef399a4832256f4b7", kill_on_drop: false }` [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/otp/hotp.rs:70:30 [INFO] [stderr] | [INFO] [stderr] 70 | Err(e) => panic!(e), [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{}" format string to Display the message [INFO] [stderr] | [INFO] [stderr] 70 | Err(e) => panic!("{}", e), [INFO] [stderr] | +++++ [INFO] [stderr] help: or use std::panic::panic_any instead [INFO] [stderr] | [INFO] [stderr] 70 | Err(e) => std::panic::panic_any(e), [INFO] [stderr] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/otp/totp.rs:67:30 [INFO] [stderr] | [INFO] [stderr] 67 | Err(e) => panic!(e), [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stderr] | [INFO] [stderr] 67 | Err(e) => panic!("{:?}", e), [INFO] [stderr] | +++++++ [INFO] [stderr] help: or use std::panic::panic_any instead [INFO] [stderr] | [INFO] [stderr] 67 | Err(e) => std::panic::panic_any(e), [INFO] [stderr] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/otp/totp.rs:93:30 [INFO] [stderr] | [INFO] [stderr] 93 | Err(e) => panic!(e), [INFO] [stderr] | ^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{:?}" format string to use the Debug implementation of `otp::ErrorCode` [INFO] [stderr] | [INFO] [stderr] 93 | Err(e) => panic!("{:?}", e), [INFO] [stderr] | +++++++ [INFO] [stderr] help: or use std::panic::panic_any instead [INFO] [stderr] | [INFO] [stderr] 93 | Err(e) => std::panic::panic_any(e), [INFO] [stderr] | ~~~~~~~~~~~~~~~~~~~~~ [INFO] [stderr] [INFO] [stderr] warning: `r2fa` (lib) generated 3 warnings [INFO] [stderr] warning: `r2fa` (lib test) generated 3 warnings (3 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.04s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/r2fa-c19238cc5ed601c9) [INFO] [stdout] [INFO] [stdout] running 52 tests [INFO] [stdout] test otp::hotp::tests::test_big_result_base10 ... ok [INFO] [stdout] test otp::hotp::tests::test_bad_code ... ok [INFO] [stdout] test otp::hotp::tests::test_empty_code ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_asciikey_simple ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_base32key_full ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_hexkey_full ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_hexkey_simple ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_sha512_code ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_key_full ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_key_simple ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_sha1_code ... ok [INFO] [stdout] test otp::hotp::tests::test_small_result_base10 ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_sha256_code ... ok [INFO] [stdout] test otp::hotp::tests::test_valid_sha256_code ... ok [INFO] [stdout] test otp::hotp::tests::test_small_result_base64 ... ok [INFO] [stdout] test otp::hotp::tests::test_valid_sha512_code ... ok [INFO] [stdout] test otp::totp::tests::test_big_result_base10 ... ok [INFO] [stdout] test otp::hotp::tests::test_empty_output_base ... ok [INFO] [stdout] test otp::totp::tests::test_bad_code ... ok [INFO] [stdout] test otp::totp::tests::test_empty_code ... ok [INFO] [stdout] test otp::totp::tests::test_invalid_base32key ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_hexkey ... ok [INFO] [stdout] test otp::totp::tests::test_invalid_hexkey ... ok [INFO] [stdout] test otp::hotp::tests::test_rfc4226_examples ... ok [INFO] [stdout] test otp::hotp::tests::test_result_ok_base64 ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_output_base ... ok [INFO] [stdout] test otp::totp::tests::test_rfc6238_examples_sha256 ... ok [INFO] [stdout] test otp::totp::tests::test_small_result_base64 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_asciikeu_full ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_asciikey_full ... ok [INFO] [stdout] test otp::hotp::tests::test_hotp_base32key_simple ... ok [INFO] [stdout] test otp::totp::tests::test_result_ok_base10 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_asciikey_simple ... ok [INFO] [stdout] test otp::totp::tests::test_result_ok_base64 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_base32key_full ... ok [INFO] [stdout] test otp::totp::tests::test_totp_base32key_simple ... ok [INFO] [stdout] test otp::totp::tests::test_totp_key_simple ... ok [INFO] [stdout] test otp::totp::tests::test_invalid_code ... ok [INFO] [stdout] test otp::totp::tests::test_valid_code ... ok [INFO] [stdout] test otp::totp::tests::test_rfc6238_examples_sha1 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_keu_full ... ok [INFO] [stdout] test otp::totp::tests::test_rfc6238_examples_sha512 ... ok [INFO] [stdout] test otp::totp::tests::test_small_result_base10 ... ok [INFO] [stdout] test otp::totp::tests::test_nokey ... ok [INFO] [stdout] test otp::totp::tests::test_big_result_base64 ... ok [INFO] [stdout] test otp::hotp::tests::test_nokey ... ok [INFO] [stdout] test otp::hotp::tests::test_result_ok_base10 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_kexkey_simple ... ok [INFO] [stdout] test otp::hotp::tests::test_big_result_base64 ... ok [INFO] [stdout] test otp::totp::tests::test_totp_hexkey_full ... ok [INFO] [stdout] test otp::hotp::tests::test_valid_sha1_code ... ok [INFO] [stdout] test otp::hotp::tests::test_invalid_base32key ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 52 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Doc-tests r2fa [INFO] [stdout] [INFO] [stdout] running 12 tests [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTP::generate (line 46) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTPBuilder (line 148) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTPBuilder (line 165) ... ok [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTPBuilder (line 110) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTPBuilder (line 174) ... ok [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTPBuilder (line 126) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTP::generate (line 77) ... ok [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTPBuilder (line 102) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTP::is_valid (line 119) ... ok [INFO] [stdout] test src/otp/hotp.rs - otp::hotp::HOTPBuilder (line 156) ... ok [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTP::is_valid (line 74) ... ok [INFO] [stdout] test src/otp/totp.rs - otp::totp::TOTPBuilder (line 118) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 4.85s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "454a519e8419efe2fbe6b89cf28356c7443a198271b3bedef399a4832256f4b7", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "454a519e8419efe2fbe6b89cf28356c7443a198271b3bedef399a4832256f4b7", kill_on_drop: false }` [INFO] [stdout] 454a519e8419efe2fbe6b89cf28356c7443a198271b3bedef399a4832256f4b7