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.87.0-nightly (920d95eaf 2025-03-28)# docs.rs version
docsrs 0.6.0 (ee9a3fe6 2025-03-28)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace-builder/builds/concurrent_tor-1.0.0/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace-builder/builds/concurrent_tor-1.0.0/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace-builder/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace-builder/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:4b26683ee3c49f365255c425c23003cbf4366de097804722c29c5bbbee3624d2" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20250328-1.87.0-nightly-920d95eaf\", \"--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] d81b202dadb9be2699d1a22fc4a2c72340bfe52cc29b6817ed9c9c615301c10d
[INFO] running `Command { std: "docker" "start" "-a" "d81b202dadb9be2699d1a22fc4a2c72340bfe52cc29b6817ed9c9c615301c10d", kill_on_drop: false }`
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr] Checking tor-circmgr v0.22.0
[INFO] [stderr] Checking tor-consdiff v0.22.0
[INFO] [stderr] Checking tokio-native-tls v0.3.1
[INFO] [stderr] Checking tokio-stream v0.1.17
[INFO] [stderr] Checking atoi v2.0.0
[INFO] [stderr] Checking memmap2 v0.9.5
[INFO] [stderr] Compiling cookie v0.18.1
[INFO] [stderr] error[E0283]: type annotations needed
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/tor-consdiff-0.22.0/src/lib.rs:371:54
[INFO] [stderr] |
[INFO] [stderr] 371 | (lo, Some(RangeEnd::Num(hi))) if lo > hi.into() => {
[INFO] [stderr] | - ^^^^
[INFO] [stderr] | |
[INFO] [stderr] | type must be known at this point
[INFO] [stderr] |
[INFO] [stderr] = note: multiple `impl`s satisfying `usize: PartialOrd<_>` found in the following crates: `core`, `deranged`:
[INFO] [stderr] - impl PartialOrd for usize;
[INFO] [stderr] - impl<MIN, MAX> PartialOrd<deranged::RangedUsize<MIN, MAX>> for usize
[INFO] [stderr] where the constant `MIN` has type `usize`, the constant `MAX` has type `usize`;
[INFO] [stderr] help: try using a fully qualified path to specify the expected types
[INFO] [stderr] |
[INFO] [stderr] 371 - (lo, Some(RangeEnd::Num(hi))) if lo > hi.into() => {
[INFO] [stderr] 371 + (lo, Some(RangeEnd::Num(hi))) if lo > <std::num::NonZero<usize> as Into<T>>::into(hi) => {
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] Checking clap_lex v0.7.4
[INFO] [stderr] For more information about this error, try `rustc --explain E0283`.
[INFO] [stderr] error: could not compile `tor-consdiff` (lib) due to 1 previous error
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0283]: type annotations needed
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/tor-circmgr-0.22.0/src/timeouts/pareto.rs:631:82
[INFO] [stderr] |
[INFO] [stderr] 631 | self.p.use_estimates && self.history.n_times() < self.p.min_observations.into()
[INFO] [stderr] | - ^^^^
[INFO] [stderr] | |
[INFO] [stderr] | type must be known at this point
[INFO] [stderr] |
[INFO] [stderr] = note: multiple `impl`s satisfying `usize: PartialOrd<_>` found in the following crates: `core`, `deranged`:
[INFO] [stderr] - impl PartialOrd for usize;
[INFO] [stderr] - impl<MIN, MAX> PartialOrd<deranged::RangedUsize<MIN, MAX>> for usize
[INFO] [stderr] where the constant `MIN` has type `usize`, the constant `MAX` has type `usize`;
[INFO] [stderr] help: try using a fully qualified path to specify the expected types
[INFO] [stderr] |
[INFO] [stderr] 631 - self.p.use_estimates && self.history.n_times() < self.p.min_observations.into()
[INFO] [stderr] 631 + self.p.use_estimates && self.history.n_times() < <u16 as Into<T>>::into(self.p.min_observations)
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error: could not compile `tor-circmgr` (lib) due to 1 previous error
[INFO] running `Command { std: "docker" "inspect" "d81b202dadb9be2699d1a22fc4a2c72340bfe52cc29b6817ed9c9c615301c10d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "d81b202dadb9be2699d1a22fc4a2c72340bfe52cc29b6817ed9c9c615301c10d", kill_on_drop: false }`
[INFO] [stdout] d81b202dadb9be2699d1a22fc4a2c72340bfe52cc29b6817ed9c9c615301c10d