case_insensitive_hashmap 1.0.1

A HashMap that uses case-insensitive strings as keys.
Documentation

Build #2350879 2025-07-26 02:27:04

# rustc version rustc 1.90.0-nightly (430d6eddf 2025-07-25)

# docs.rs version docsrs 0.6.0 (4b4a3779 2025-07-22)

# build log [INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/case_insensitive_hashmap-1.0.1/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/case_insensitive_hashmap-1.0.1/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\", \"-20250725-1.90.0-nightly-430d6eddf\", \"--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] b8e61afa9ff5cf19441b08179915c5afa39f8983e5a503785faa2f792b132f05 [INFO] running `Command { std: "docker" "start" "-a" "b8e61afa9ff5cf19441b08179915c5afa39f8983e5a503785faa2f792b132f05", kill_on_drop: false }` [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:221:18 [INFO] [stderr] | [INFO] [stderr] 221 | pub fn drain(&mut self) -> Drain<Key, V> { [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] 221 | pub fn drain(&mut self) -> Drain<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:226:32 [INFO] [stderr] | [INFO] [stderr] 226 | pub fn entry<K: Into<Key>>(&mut self, k: K) -> Entry<Key, V> { [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] 226 | pub fn entry<K: Into<Key>>(&mut self, k: K) -> Entry<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:275:17 [INFO] [stderr] | [INFO] [stderr] 275 | pub fn iter(&self) -> Iter<Key, V> { [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] 275 | pub fn iter(&self) -> Iter<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:282:21 [INFO] [stderr] | [INFO] [stderr] 282 | pub fn iter_mut(&mut self) -> IterMut<Key, V> { [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] 282 | pub fn iter_mut(&mut self) -> IterMut<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:287:17 [INFO] [stderr] | [INFO] [stderr] 287 | pub fn keys(&self) -> Keys<Key, V> { [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] 287 | pub fn keys(&self) -> Keys<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:340:19 [INFO] [stderr] | [INFO] [stderr] 340 | pub fn values(&self) -> Values<Key, V> { [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] 340 | pub fn values(&self) -> Values<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:345:23 [INFO] [stderr] | [INFO] [stderr] 345 | pub fn values_mut(&mut self) -> ValuesMut<Key, V> { [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] 345 | pub fn values_mut(&mut self) -> ValuesMut<'_, Key, V> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: `case_insensitive_hashmap` (lib) generated 7 warnings [INFO] [stderr] Scraping case_insensitive_hashmap v1.0.1 (/opt/rustwide/workdir) [INFO] [stderr] Documenting case_insensitive_hashmap v1.0.1 (/opt/rustwide/workdir) [INFO] [stderr] warning: unclosed HTML tag `String` [INFO] [stderr] --> src/lib.rs:274:50 [INFO] [stderr] | [INFO] [stderr] 274 | /// The iterator element type is (&'a UniCase<String>, &'a V). [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(rustdoc::invalid_html_tags)]` on by default [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 274 | /// The iterator element type is (&'a `UniCase<String>`, &'a V). [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: unclosed HTML tag `String` [INFO] [stderr] --> src/lib.rs:281:21 [INFO] [stderr] | [INFO] [stderr] 281 | /// (&'a UniCase<String>, &'a mut V). [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 281 | /// (&'a `UniCase<String>`, &'a mut V). [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: unclosed HTML tag `String` [INFO] [stderr] --> src/lib.rs:286:99 [INFO] [stderr] | [INFO] [stderr] 286 | /// An iterator visiting all keys in arbitrary order. The iterator element type is &'a UniCase<String>. [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 286 | /// An iterator visiting all keys in arbitrary order. The iterator element type is &'a `UniCase<String>`. [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: `case_insensitive_hashmap` (lib doc) generated 3 warnings [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.58s [INFO] [stderr] Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/case_insensitive_hashmap/index.html [INFO] running `Command { std: "docker" "inspect" "b8e61afa9ff5cf19441b08179915c5afa39f8983e5a503785faa2f792b132f05", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "b8e61afa9ff5cf19441b08179915c5afa39f8983e5a503785faa2f792b132f05", kill_on_drop: false }` [INFO] [stdout] b8e61afa9ff5cf19441b08179915c5afa39f8983e5a503785faa2f792b132f05