Build #666902 2022-11-09T01:07:30.513582+00:00
# rustc version
rustc 1.67.0-nightly (85f4f41de 2022-11-08)# docs.rs version
docsrs 0.6.0 (261d912 2022-11-05)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/bitcoinconsensus-0.16.4/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/bitcoinconsensus-0.16.4/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "3221225472" "--cpus" "3" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:83125433e4fff17b1ac56874832f668d9df75ee638575aca552b68e127bedee9" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "-Z" "unstable-options" "--config" "build.rustdocflags=[\"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20221108-1.67.0-nightly-85f4f41de\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--disable-per-crate-search\", \"--extern-html-root-takes-precedence\"]" "--offline" "-Zunstable-options" "--config=doc.extern-map.registries.crates-io=\"https://docs.rs/{pkg_name}/{version}/x86_64-unknown-linux-gnu\"" "-j3" "--target" "x86_64-unknown-linux-gnu", 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] 2e2c8256d81d38338c58f7690650c245054d882ef4e74c81026177e63e009793
[INFO] running `Command { std: "docker" "start" "-a" "2e2c8256d81d38338c58f7690650c245054d882ef4e74c81026177e63e009793", kill_on_drop: false }`
[INFO] [stderr] warning: bitcoin/src/hash.cpp: In function 'unsigned int MurmurHash3(unsigned int, const std::vector<unsigned char>&)':
[INFO] [stderr] warning: bitcoin/src/hash.cpp:48:16: warning: this statement may fall through [-Wimplicit-fallthrough=]
[INFO] [stderr] warning: 48 | k1 ^= tail[2] << 16;
[INFO] [stderr] warning: | ~~~^~~~~~~~~~~~~~~~
[INFO] [stderr] warning: bitcoin/src/hash.cpp:49:9: note: here
[INFO] [stderr] warning: 49 | case 2:
[INFO] [stderr] warning: | ^~~~
[INFO] [stderr] warning: bitcoin/src/hash.cpp:50:16: warning: this statement may fall through [-Wimplicit-fallthrough=]
[INFO] [stderr] warning: 50 | k1 ^= tail[1] << 8;
[INFO] [stderr] warning: | ~~~^~~~~~~~~~~~~~~
[INFO] [stderr] warning: bitcoin/src/hash.cpp:51:9: note: here
[INFO] [stderr] warning: 51 | case 1:
[INFO] [stderr] warning: | ^~~~
[INFO] [stderr] Documenting bitcoinconsensus v0.16.4 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:38:34
[INFO] [stderr] |
[INFO] [stderr] 38 | pub const VERIFY_P2SH : c_uint = (1 << 0);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] = note: `#[warn(unused_parens)]` on by default
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 38 - pub const VERIFY_P2SH : c_uint = (1 << 0);
[INFO] [stderr] 38 + pub const VERIFY_P2SH : c_uint = 1 << 0;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:40:36
[INFO] [stderr] |
[INFO] [stderr] 40 | pub const VERIFY_DERSIG : c_uint = (1 << 2);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 40 - pub const VERIFY_DERSIG : c_uint = (1 << 2);
[INFO] [stderr] 40 + pub const VERIFY_DERSIG : c_uint = 1 << 2;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:42:39
[INFO] [stderr] |
[INFO] [stderr] 42 | pub const VERIFY_NULLDUMMY : c_uint = (1 << 4);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 42 - pub const VERIFY_NULLDUMMY : c_uint = (1 << 4);
[INFO] [stderr] 42 + pub const VERIFY_NULLDUMMY : c_uint = 1 << 4;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:44:49
[INFO] [stderr] |
[INFO] [stderr] 44 | pub const VERIFY_CHECKLOCKTIMEVERIFY : c_uint = (1 << 9);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 44 - pub const VERIFY_CHECKLOCKTIMEVERIFY : c_uint = (1 << 9);
[INFO] [stderr] 44 + pub const VERIFY_CHECKLOCKTIMEVERIFY : c_uint = 1 << 9;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:46:49
[INFO] [stderr] |
[INFO] [stderr] 46 | pub const VERIFY_CHECKSEQUENCEVERIFY : c_uint = (1 << 10);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 46 - pub const VERIFY_CHECKSEQUENCEVERIFY : c_uint = (1 << 10);
[INFO] [stderr] 46 + pub const VERIFY_CHECKSEQUENCEVERIFY : c_uint = 1 << 10;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: unnecessary parentheses around assigned value
[INFO] [stderr] --> src/lib.rs:48:37
[INFO] [stderr] |
[INFO] [stderr] 48 | pub const VERIFY_WITNESS : c_uint = (1 << 11);
[INFO] [stderr] | ^ ^
[INFO] [stderr] |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr] |
[INFO] [stderr] 48 - pub const VERIFY_WITNESS : c_uint = (1 << 11);
[INFO] [stderr] 48 + pub const VERIFY_WITNESS : c_uint = 1 << 11;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] warning: `bitcoinconsensus` (lib doc) generated 6 warnings (run `cargo fix --lib -p bitcoinconsensus` to apply 6 suggestions)
[INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.69s
[INFO] running `Command { std: "docker" "inspect" "2e2c8256d81d38338c58f7690650c245054d882ef4e74c81026177e63e009793", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2e2c8256d81d38338c58f7690650c245054d882ef4e74c81026177e63e009793", kill_on_drop: false }`
[INFO] [stdout] 2e2c8256d81d38338c58f7690650c245054d882ef4e74c81026177e63e009793