haystack-types 0.1.1

Haystack types and traits for Rust.
Documentation
Build #2650367 2025-11-10 00:46:27
# rustc version
rustc 1.93.0-nightly (fb23dd3c6 2025-11-08)# docs.rs version
docsrs 0.6.0 (fb84acf8 2025-11-04)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/haystack-types-0.1.1/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/haystack-types-0.1.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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20251108-1.93.0-nightly-fb23dd3c6\", \"--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] 0813d394b474ab78741623d3be2ab991e89f20d689e34648101bc5f28cd0e62f
[INFO] running `Command { std: "docker" "start" "-a" "0813d394b474ab78741623d3be2ab991e89f20d689e34648101bc5f28cd0e62f", kill_on_drop: false }`
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr]  Documenting haystack-types v0.1.1 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unnecessary parentheses around function argument
[INFO] [stderr]   --> src/common.rs:79:15
[INFO] [stderr]    |
[INFO] [stderr] 79 |     recognize(((
[INFO] [stderr]    |               ^
[INFO] [stderr] ...
[INFO] [stderr] 82 |     ))).parse(input)
[INFO] [stderr]    |      ^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr]    |
[INFO] [stderr] 79 ~     recognize((
[INFO] [stderr] 80 |         take_while1(lower),
[INFO] [stderr] 81 |         many0(alt((alphanumeric1,tag("_"))))
[INFO] [stderr] 82 ~     ) ).parse(input)
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: unnecessary parentheses around function argument
[INFO] [stderr]    --> src/io/mod.rs:182:23
[INFO] [stderr]     |
[INFO] [stderr] 182 |             recognize(((
[INFO] [stderr]     |                       ^
[INFO] [stderr] ...
[INFO] [stderr] 185 |             ))).parse(input)
[INFO] [stderr]     |              ^
[INFO] [stderr]     |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr]     |
[INFO] [stderr] 182 ~             recognize((
[INFO] [stderr] 183 |                 take_while1(|c: char| c.is_ascii_uppercase()),
[INFO] [stderr] 184 |                 take_while(|c: char| is_alphanumeric(c as u8) || c == '/' || c== '-' || c== '_' || c== '+')
[INFO] [stderr] 185 ~             ) ).parse(input)
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: unnecessary parentheses around function argument
[INFO] [stderr]    --> src/io/mod.rs:249:31
[INFO] [stderr]     |
[INFO] [stderr] 249 |             map_res(recognize(((opt(tag("-")),digit1,opt(((tag("."),digit1)))))),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr]     |                               ^                                               ^
[INFO] [stderr]     |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr]     |
[INFO] [stderr] 249 -             map_res(recognize(((opt(tag("-")),digit1,opt(((tag("."),digit1)))))),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr] 249 +             map_res(recognize((opt(tag("-")),digit1,opt(((tag("."),digit1)))) ),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: unnecessary parentheses around function argument
[INFO] [stderr]    --> src/io/mod.rs:249:58
[INFO] [stderr]     |
[INFO] [stderr] 249 |             map_res(recognize(((opt(tag("-")),digit1,opt(((tag("."),digit1)))))),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr]     |                                                          ^                 ^
[INFO] [stderr]     |
[INFO] [stderr] help: remove these parentheses
[INFO] [stderr]     |
[INFO] [stderr] 249 -             map_res(recognize(((opt(tag("-")),digit1,opt(((tag("."),digit1)))))),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr] 249 +             map_res(recognize(((opt(tag("-")),digit1,opt((tag("."),digit1) )))),|s: &str| s.parse::<T>()).parse(input)
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: `haystack-types` (lib doc) generated 4 warnings (run `cargo fix --lib -p haystack-types` to apply 4 suggestions)
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.64s
[INFO] [stderr]    Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/haystack_types/index.html
[INFO] running `Command { std: "docker" "inspect" "0813d394b474ab78741623d3be2ab991e89f20d689e34648101bc5f28cd0e62f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "0813d394b474ab78741623d3be2ab991e89f20d689e34648101bc5f28cd0e62f", kill_on_drop: false }`
[INFO] [stdout] 0813d394b474ab78741623d3be2ab991e89f20d689e34648101bc5f28cd0e62f