bucky-objects 0.1.0

Bucky objects library
Documentation

Build #3621206 2026-06-18 22:58:04

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# error kind ExecutionFailed

# pre-build errors command failed: exit status: 101

# rustc version rustc 1.98.0-nightly (c1b22f44c 2026-06-17)

# docs.rs version docsrs 0.0.0 (886bc7a22b1adc4b387ce1343447fe3af98d9ce5 2026-06-14 )

# build log [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-w" "/opt/rustwide/workdir" "--user" "1001:1001" "7cc4cd08686d014764b40a3fc69ee84c974de120753ce283bfd2ccc388c467ba" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20260617-1.98.0-nightly-c1b22f44c\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--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\"" "-Zrustdoc-scrape-examples" "-j6" "--target" "x86_64-unknown-linux-gnu", kill_on_drop: false }` [INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op [INFO] [stderr] Checking bucky-crypto v0.1.0 [INFO] [stderr] error[E0061]: this function takes 3 arguments but 2 arguments were supplied [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/bucky-crypto-0.1.0/src/private_key.rs:360:31 [INFO] [stderr] | [INFO] [stderr] 360 | let aes_key = ecies::utils::decapsulate(&ephemeral_pk, &private_key).map_err(|e| { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------- [INFO] [stderr] | || | [INFO] [stderr] | || expected `&SecretKey`, found `&&SecretKey` [INFO] [stderr] | |expected `ecies::PublicKey`, found `libsecp256k1::PublicKey` [INFO] [stderr] | argument #3 of type `bool` is missing [INFO] [stderr] | [INFO] [stderr] = note: `libsecp256k1::PublicKey` and `ecies::PublicKey` have similar names, but are actually distinct types [INFO] [stderr] note: `libsecp256k1::PublicKey` is defined in crate `libsecp256k1` [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/libsecp256k1-0.7.2/src/lib.rs:64:1 [INFO] [stderr] | [INFO] [stderr] 64 | pub struct PublicKey(Affine); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] note: `ecies::PublicKey` is defined in crate `ecies` [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/ecies-0.2.11/src/elliptic/secp256k1.rs:74:1 [INFO] [stderr] | [INFO] [stderr] 74 | pub struct PublicKey(K256PublicKey); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] = note: expected reference `&ecies::SecretKey` [INFO] [stderr] found reference `&&libsecp256k1::SecretKey` [INFO] [stderr] note: function defined here [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/ecies-0.2.11/src/elliptic/secp256k1.rs:145:8 [INFO] [stderr] | [INFO] [stderr] 145 | pub fn decapsulate(pk: &PublicKey, peer_sk: &SecretKey, compressed: bool) -> Result<SharedSecret, Error> { [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] help: provide the argument [INFO] [stderr] | [INFO] [stderr] 360 - let aes_key = ecies::utils::decapsulate(&ephemeral_pk, &private_key).map_err(|e| { [INFO] [stderr] 360 + let aes_key = ecies::utils::decapsulate(/* &ecies::PublicKey */, /* &ecies::SecretKey */, /* bool */).map_err(|e| { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 3 arguments but 2 arguments were supplied [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/bucky-crypto-0.1.0/src/public_key.rs:122:31 [INFO] [stderr] | [INFO] [stderr] 122 | let aes_key = ecies::utils::encapsulate(&ephemeral_sk, &public_key).map_err(|e| { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^---------------------------- [INFO] [stderr] | | | [INFO] [stderr] | | expected `&PublicKey`, found `&&PublicKey` [INFO] [stderr] | argument #3 of type `bool` is missing [INFO] [stderr] | [INFO] [stderr] = note: expected reference `&ecies::PublicKey` [INFO] [stderr] found reference `&&libsecp256k1::PublicKey` [INFO] [stderr] note: function defined here [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/ecies-0.2.11/src/elliptic/secp256k1.rs:137:8 [INFO] [stderr] | [INFO] [stderr] 137 | pub fn encapsulate(sk: &SecretKey, peer_pk: &PublicKey, compressed: bool) -> Result<SharedSecret, Error> { [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] help: provide the argument [INFO] [stderr] | [INFO] [stderr] 122 - let aes_key = ecies::utils::encapsulate(&ephemeral_sk, &public_key).map_err(|e| { [INFO] [stderr] 122 + let aes_key = ecies::utils::encapsulate(&ephemeral_sk, /* &ecies::PublicKey */, /* bool */).map_err(|e| { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0061`. [INFO] [stderr] error: could not compile `bucky-crypto` (lib) due to 2 previous errors [INFO] running `Command { std: "docker" "inspect" "7cc4cd08686d014764b40a3fc69ee84c974de120753ce283bfd2ccc388c467ba", kill_on_drop: false }`