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.
# rustc version
rustc 1.90.0-nightly (8f08b3a32 2025-07-18)# docs.rs version
docsrs 0.6.0 (c1135d19 2025-07-02)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/kvcli-0.0.6/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/kvcli-0.0.6/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" "6442450944" "--cpus" "6" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:cf8efcab8866f2cf4285301c7418e2f4f2a9b088c91ba69c40d5b659f81557f7" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20250718-1.90.0-nightly-8f08b3a32\", \"--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: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] df385639576daae8a7927699b44d67ee0190a9891d3985455caaa0c7b47a3d67
[INFO] running `Command { std: "docker" "start" "-a" "df385639576daae8a7927699b44d67ee0190a9891d3985455caaa0c7b47a3d67", kill_on_drop: false }`
[INFO] [stderr] warning: Rustdoc did not scrape the following examples because they require dev-dependencies: args-main, ctrlc-main, signal-hook-main
[INFO] [stderr] If you want Rustdoc to scrape these examples, then add `doc-scrape-examples = true`
[INFO] [stderr] to the [[example]] target configuration of at least one example.
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr] Checking kv-rs v0.0.6
[INFO] [stderr] Checking colored v2.2.0
[INFO] [stderr] Checking strum v0.25.0
[INFO] [stderr] error[E0635]: unknown feature `cursor_remaining`
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/kv-rs-0.0.6/src/lib.rs:6:12
[INFO] [stderr] |
[INFO] [stderr] 6 | #![feature(cursor_remaining)]
[INFO] [stderr] | ^^^^^^^^^^^^^^^^
[INFO] [stderr]
[INFO] [stderr] error[E0599]: the method `is_empty` exists for mutable reference `&mut std::io::Cursor<&[u8]>`, but its trait bounds were not satisfied
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/kv-rs-0.0.6/src/codec/bytes_codec.rs:68:19
[INFO] [stderr] |
[INFO] [stderr] 68 | if cursor.is_empty() {
[INFO] [stderr] | ^^^^^^^^ method cannot be called on `&mut std::io::Cursor<&[u8]>` due to unsatisfied trait bounds
[INFO] [stderr] |
[INFO] [stderr] ::: /opt/rustwide/rustup-home/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/io/cursor.rs:75:1
[INFO] [stderr] |
[INFO] [stderr] 75 | pub struct Cursor<T> {
[INFO] [stderr] | -------------------- doesn't satisfy `std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr] |
[INFO] [stderr] = note: the following trait bounds were not satisfied:
[INFO] [stderr] `std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr] which is required by `&mut std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr]
[INFO] [stderr] error[E0599]: the method `is_empty` exists for mutable reference `&mut std::io::Cursor<&[u8]>`, but its trait bounds were not satisfied
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/kv-rs-0.0.6/src/codec/bytes_codec2.rs:65:19
[INFO] [stderr] |
[INFO] [stderr] 65 | if cursor.is_empty() {
[INFO] [stderr] | ^^^^^^^^ method cannot be called on `&mut std::io::Cursor<&[u8]>` due to unsatisfied trait bounds
[INFO] [stderr] |
[INFO] [stderr] ::: /opt/rustwide/rustup-home/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/io/cursor.rs:75:1
[INFO] [stderr] |
[INFO] [stderr] 75 | pub struct Cursor<T> {
[INFO] [stderr] | -------------------- doesn't satisfy `std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr] |
[INFO] [stderr] = note: the following trait bounds were not satisfied:
[INFO] [stderr] `std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr] which is required by `&mut std::io::Cursor<&[u8]>: ExactSizeIterator`
[INFO] [stderr]
[INFO] [stderr] Some errors have detailed explanations: E0599, E0635.
[INFO] [stderr] For more information about an error, try `rustc --explain E0599`.
[INFO] [stderr] error: could not compile `kv-rs` (lib) due to 3 previous errors
[INFO] running `Command { std: "docker" "inspect" "df385639576daae8a7927699b44d67ee0190a9891d3985455caaa0c7b47a3d67", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "df385639576daae8a7927699b44d67ee0190a9891d3985455caaa0c7b47a3d67", kill_on_drop: false }`
[INFO] [stdout] df385639576daae8a7927699b44d67ee0190a9891d3985455caaa0c7b47a3d67