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.99.0-nightly (d0babd8b6 2026-07-15)
# docs.rs version docsrs 0.0.0 (f1b150f0cd76f7cabcd39e1f4790ba771b28b5c4 2026-07-19 )
# 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" "36d10ee42d513e92f1f5e0066870adde288ebaf0561fb7e80883d6241282502f" "/opt/rustwide/cargo-home/bin/cargo" "+nightly-2026-07-16" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=html-non-static-files\", \"--resource-suffix\", \"-20260715-1.99.0-nightly-d0babd8b6\", \"--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 git-revision v0.10.4 [INFO] [stderr] error[E0282]: type annotations needed [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:325:17 [INFO] [stderr] | [INFO] [stderr] 325 | match input.as_ref() { [INFO] [stderr] | ^^^^^^ [INFO] [stderr] 326 | [b':'] => return Err(Error::MissingColonSuffix), [INFO] [stderr] | ------ type must be known at this point [INFO] [stderr] | [INFO] [stderr] help: try using a fully qualified path to specify the expected types [INFO] [stderr] | [INFO] [stderr] 325 - match input.as_ref() { [INFO] [stderr] 325 + match <BStr as AsRef<T>>::as_ref(input) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:537:25 [INFO] [stderr] | [INFO] [stderr] 535 | let target = match kind.as_ref().as_ref() { [INFO] [stderr] | ---------------------- this expression has type `&[u8; 6]` [INFO] [stderr] 536 | b"commit" => delegate::PeelTo::ObjectKind(git_object::Kind::Commit), [INFO] [stderr] 537 | b"tag" => delegate::PeelTo::ObjectKind(git_object::Kind::Tag), [INFO] [stderr] | ^^^^^^ expected an array with a size of 6, found one with a size of 3 [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:538:25 [INFO] [stderr] | [INFO] [stderr] 535 | let target = match kind.as_ref().as_ref() { [INFO] [stderr] | ---------------------- this expression has type `&[u8; 6]` [INFO] [stderr] ... [INFO] [stderr] 538 | b"tree" => delegate::PeelTo::ObjectKind(git_object::Kind::Tree), [INFO] [stderr] | ^^^^^^^ expected an array with a size of 6, found one with a size of 4 [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:539:25 [INFO] [stderr] | [INFO] [stderr] 535 | let target = match kind.as_ref().as_ref() { [INFO] [stderr] | ---------------------- this expression has type `&[u8; 6]` [INFO] [stderr] ... [INFO] [stderr] 539 | b"blob" => delegate::PeelTo::ObjectKind(git_object::Kind::Blob), [INFO] [stderr] | ^^^^^^^ expected an array with a size of 6, found one with a size of 4 [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:541:25 [INFO] [stderr] | [INFO] [stderr] 535 | let target = match kind.as_ref().as_ref() { [INFO] [stderr] | ---------------------- this expression has type `&[u8; 6]` [INFO] [stderr] ... [INFO] [stderr] 541 | b"" => delegate::PeelTo::RecursiveTagObject, [INFO] [stderr] | ^^^ expected an array with a size of 6, found one with a size of 0 [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `BStr: AsRef<[u8; 6]>` is not satisfied [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/git-revision-0.10.4/src/spec/parse/function.rs:535:54 [INFO] [stderr] | [INFO] [stderr] 535 | let target = match kind.as_ref().as_ref() { [INFO] [stderr] | ^^^^^^ the trait `AsRef<[u8; 6]>` is not implemented for `BStr` [INFO] [stderr] | [INFO] [stderr] help: `BStr` implements trait `AsRef<T>` [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.13.0/src/impls.rs:679:5 [INFO] [stderr] | [INFO] [stderr] 679 | impl AsRef<[u8]> for BStr { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ `AsRef<[u8]>` [INFO] [stderr] ... [INFO] [stderr] 686 | impl AsRef<BStr> for BStr { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ `AsRef<BStr>` [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0282, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `git-revision` (lib) due to 6 previous errors [INFO] running `Command { std: "docker" "inspect" "36d10ee42d513e92f1f5e0066870adde288ebaf0561fb7e80883d6241282502f", kill_on_drop: false }`