graph-api-lib 0.2.1

Core library for the graph-api ecosystem - a flexible, type-safe API for working with in-memory graphs in Rust
Documentation

Build #3363932 2026-05-23 18:51:53

# rustc version rustc 1.98.0-nightly (54333ff07 2026-05-22)

# docs.rs version docsrs 0.0.0 (f16e33f3e6ac9fc9e4413728c5dd1b2ba1c6b799 2026-05-23 )

# 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" "b214dd01591b57ad60990f235f9c8eb93ec4670c9115876085859507d0fe3ed7" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20260522-1.98.0-nightly-54333ff07\", \"--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: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/element.rs:14:14 [INFO] [stderr] | [INFO] [stderr] 14 | fn value(&self, _index: &<Self::Label as Label>::Index) -> Option<Value> { [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] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 14 | fn value(&self, _index: &<Self::Label as Label>::Index) -> Option<Value<'_>> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/graph.rs:163:13 [INFO] [stderr] | [INFO] [stderr] 163 | fn walk(&self) -> StartWalkerBuilder<ImmutableMarker, Self, ()> [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] 163 | fn walk(&self) -> StartWalkerBuilder<'_, ImmutableMarker, Self, ()> [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/graph.rs:171:17 [INFO] [stderr] | [INFO] [stderr] 171 | fn walk_mut(&mut self) -> StartWalkerBuilder<MutableMarker, Self, ()> [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] 171 | fn walk_mut(&mut self) -> StartWalkerBuilder<'_, MutableMarker, Self, ()> [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/walker/mod.rs:131:28 [INFO] [stderr] | [INFO] [stderr] 131 | fn edges(self, search: EdgeSearch<Self::Graph>) -> Edges<'_, 'graph, Self> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ ^^ the same lifetime is elided here [INFO] [stderr] | | [INFO] [stderr] | the 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: consistently use `'_` [INFO] [stderr] | [INFO] [stderr] 131 | fn edges(self, search: EdgeSearch<'_, Self::Graph>) -> Edges<'_, 'graph, Self> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: `graph-api-lib` (lib) generated 4 warnings (run `cargo fix --lib -p graph-api-lib` to apply 4 suggestions) [INFO] [stderr] Scraping graph-api-lib v0.2.1 (/opt/rustwide/workdir) [INFO] [stderr] warning: failed to scan example "dbg" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "dbg") generated 1 warning [INFO] [stderr] warning: failed to scan example "mutate" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "mutate") generated 1 warning [INFO] [stderr] warning: failed to scan example "detour" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "detour") generated 1 warning [INFO] [stderr] warning: failed to scan example "head" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "head") generated 1 warning [INFO] [stderr] warning: failed to scan example "collect" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "collect") generated 1 warning [INFO] [stderr] warning: failed to scan example "control_flow" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "control_flow") generated 1 warning [INFO] [stderr] warning: failed to scan example "edges" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "edges") generated 1 warning [INFO] [stderr] warning: failed to scan example "tail" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "tail") generated 1 warning [INFO] [stderr] warning: failed to scan example "context" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "context") generated 1 warning [INFO] [stderr] warning: failed to scan example "map" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "map") generated 1 warning [INFO] [stderr] warning: failed to scan example "take" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "take") generated 1 warning [INFO] [stderr] warning: failed to scan example "vertices_by_id" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "vertices_by_id") generated 1 warning [INFO] [stderr] warning: failed to scan example "into_iter" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: failed to scan example "filter" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "filter") generated 1 warning [INFO] [stderr] warning: `graph-api-lib` (example "into_iter") generated 1 warning [INFO] [stderr] warning: failed to scan example "count" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "count") generated 1 warning [INFO] [stderr] warning: failed to scan example "mutate_context" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "mutate_context") generated 1 warning [INFO] [stderr] warning: failed to scan example "default_context" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "default_context") generated 1 warning [INFO] [stderr] warning: failed to scan example "first" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "first") generated 1 warning [INFO] [stderr] warning: failed to scan example "custom_step" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "custom_step") generated 1 warning [INFO] [stderr] warning: failed to scan example "vertices" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "vertices") generated 1 warning [INFO] [stderr] warning: failed to scan example "reduce" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "reduce") generated 1 warning [INFO] [stderr] warning: failed to scan example "fold" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "fold") generated 1 warning [INFO] [stderr] warning: failed to scan example "boxed" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "boxed") generated 1 warning [INFO] [stderr] warning: failed to scan example "probe" in package `graph-api-lib` for example code usage [INFO] [stderr] Try running with `--verbose` to see the error message. [INFO] [stderr] If an example should not be scanned, then consider adding `doc-scrape-examples = false` to its `[[example]]` definition in Cargo.toml [INFO] [stderr] warning: `graph-api-lib` (example "probe") generated 1 warning [INFO] [stderr] Documenting graph-api-lib v0.2.1 (/opt/rustwide/workdir) [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.97s [INFO] [stderr] Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/graph_api_lib/index.html [INFO] running `Command { std: "docker" "inspect" "b214dd01591b57ad60990f235f9c8eb93ec4670c9115876085859507d0fe3ed7", kill_on_drop: false }`