Build #2580098 2025-10-12 09:38:55
# rustc version
rustc 1.92.0-nightly (be0ade2b6 2025-10-11)# docs.rs version
docsrs 0.6.0 (f42173de 2025-09-12)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/tf-idf-vectorizer-0.5.8/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/tf-idf-vectorizer-0.5.8/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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20251011-1.92.0-nightly-be0ade2b6\", \"--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] 7d3519d682f98c65f2db89260ef3639f73e2970ce1d9ce0dc93f3aa798ce5c51
[INFO] running `Command { std: "docker" "start" "-a" "7d3519d682f98c65f2db89260ef3639f73e2970ce1d9ce0dc93f3aa798ce5c51", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:45:16
[INFO] [stderr] |
[INFO] [stderr] 45 | fn raw_get(&self, index: usize) -> Option<ValueWithIndex<N>>;
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 45 | fn raw_get(&self, index: usize) -> Option<ValueWithIndex<'_, N>>;
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:47:30
[INFO] [stderr] |
[INFO] [stderr] 47 | fn raw_get_with_cut_down(&self, index: usize, cut_down: usize) -> Option<ValueWithIndex<N>>;
[INFO] [stderr] | ^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 47 | fn raw_get_with_cut_down(&self, index: usize, cut_down: usize) -> Option<ValueWithIndex<'_, N>>;
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:53:13
[INFO] [stderr] |
[INFO] [stderr] 53 | fn iter(&self) -> ZeroSpVecIter<N>;
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 53 | fn iter(&self) -> ZeroSpVecIter<'_, N>;
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:54:17
[INFO] [stderr] |
[INFO] [stderr] 54 | fn raw_iter(&self) -> ZeroSpVecRawIter<N>;
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 54 | fn raw_iter(&self) -> ZeroSpVecRawIter<'_, N>;
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:261:16
[INFO] [stderr] |
[INFO] [stderr] 261 | fn raw_get(&self, index: usize) -> Option<ValueWithIndex<N>> {
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 261 | fn raw_get(&self, index: usize) -> Option<ValueWithIndex<'_, N>> {
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:301:30
[INFO] [stderr] |
[INFO] [stderr] 301 | fn raw_get_with_cut_down(&self, index: usize, cut_down: usize) -> Option<ValueWithIndex<N>> {
[INFO] [stderr] | ^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 301 | fn raw_get_with_cut_down(&self, index: usize, cut_down: usize) -> Option<ValueWithIndex<'_, N>> {
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:446:13
[INFO] [stderr] |
[INFO] [stderr] 446 | fn iter(&self) -> ZeroSpVecIter<N> {
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 446 | fn iter(&self) -> ZeroSpVecIter<'_, N> {
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr] --> src/utils/math/vector/mod.rs:454:17
[INFO] [stderr] |
[INFO] [stderr] 454 | fn raw_iter(&self) -> ZeroSpVecRawIter<N> {
[INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr] | |
[INFO] [stderr] | the lifetime is elided here
[INFO] [stderr] |
[INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr] |
[INFO] [stderr] 454 | fn raw_iter(&self) -> ZeroSpVecRawIter<'_, N> {
[INFO] [stderr] | +++
[INFO] [stderr]
[INFO] [stderr] warning: `tf-idf-vectorizer` (lib) generated 8 warnings (run `cargo fix --lib -p tf-idf-vectorizer` to apply 8 suggestions)
[INFO] [stderr] Scraping tf-idf-vectorizer v0.5.8 (/opt/rustwide/workdir)
[INFO] [stderr] Documenting tf-idf-vectorizer v0.5.8 (/opt/rustwide/workdir)
[INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.04s
[INFO] [stderr] Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/tf_idf_vectorizer/index.html
[INFO] running `Command { std: "docker" "inspect" "7d3519d682f98c65f2db89260ef3639f73e2970ce1d9ce0dc93f3aa798ce5c51", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "7d3519d682f98c65f2db89260ef3639f73e2970ce1d9ce0dc93f3aa798ce5c51", kill_on_drop: false }`
[INFO] [stdout] 7d3519d682f98c65f2db89260ef3639f73e2970ce1d9ce0dc93f3aa798ce5c51