manhattan-tree 0.1.1

A spatial tree which can effiently find closest key to a point, by manhattan distance.
Build #692570 2022-12-04 23:20:57

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.67.0-nightly (234151769 2022-12-03)# docs.rs version
docsrs 0.6.0 (a46af5d2 2022-12-02)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/manhattan-tree-0.1.1/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/manhattan-tree-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" "3221225472" "--cpus" "3" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:bb5b0feb4f87116a4ea905b7ff5bf5b85913db05e9f0fbc1abdd3168928d9075" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "-Z" "unstable-options" "--config" "build.rustdocflags=[\"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20221203-1.67.0-nightly-234151769\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--disable-per-crate-search\", \"--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\"" "-j3" "--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] 06b941227803e9c1e0388101fdb5afa13bd380ec967ccfb48afb446497defb2f
[INFO] running `Command { std: "docker" "start" "-a" "06b941227803e9c1e0388101fdb5afa13bd380ec967ccfb48afb446497defb2f", kill_on_drop: false }`
[INFO] [stderr]     Checking num-bigint v0.2.6
[INFO] [stderr]     Checking num-iter v0.1.43
[INFO] [stderr]     Checking bonzai v0.2.1
[INFO] [stderr] error[E0557]: feature has been removed
[INFO] [stderr]  --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:2:12
[INFO] [stderr]   |
[INFO] [stderr] 2 | #![feature(optin_builtin_traits)]
[INFO] [stderr]   |            ^^^^^^^^^^^^^^^^^^^^ feature has been removed
[INFO] [stderr]   |
[INFO] [stderr]   = note: renamed to `auto_traits`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `core::array::FixedSizeArray`
[INFO] [stderr]   --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:12:5
[INFO] [stderr]    |
[INFO] [stderr] 12 | use core::array::FixedSizeArray;
[INFO] [stderr]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `FixedSizeArray` in `array`
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]    --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:611:44
[INFO] [stderr]     |
[INFO] [stderr] 611 | impl<'tree, T, C: FixedSizeArray<ChildId>> !Send for TreeOperation<'tree, T, C> {}
[INFO] [stderr]     |                                            ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]     = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]    --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:612:44
[INFO] [stderr]     |
[INFO] [stderr] 612 | impl<'tree, T, C: FixedSizeArray<ChildId>> !Sync for TreeOperation<'tree, T, C> {}
[INFO] [stderr]     |                                            ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]     = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]    --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:737:58
[INFO] [stderr]     |
[INFO] [stderr] 737 | impl<'op, 'node, 't: 'op, T, C: FixedSizeArray<ChildId>> !Send for NodeWriteGuard<'op, 'node, 't, T, C> {}
[INFO] [stderr]     |                                                          ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]     = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]    --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:738:58
[INFO] [stderr]     |
[INFO] [stderr] 738 | impl<'op, 'node, 't: 'op, T, C: FixedSizeArray<ChildId>> !Sync for NodeWriteGuard<'op, 'node, 't, T, C> {}
[INFO] [stderr]     |                                                          ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]     = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:1135:58
[INFO] [stderr]      |
[INFO] [stderr] 1135 | impl<'op, 'node, 't: 'op, T, C: FixedSizeArray<ChildId>> !Send for ChildWriteGuard<'op, 'node, 't, T, C> {}
[INFO] [stderr]      |                                                          ^^^^^
[INFO] [stderr]      |
[INFO] [stderr]      = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]      = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
[INFO] [stderr]     --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:1136:58
[INFO] [stderr]      |
[INFO] [stderr] 1136 | impl<'op, 'node, 't: 'op, T, C: FixedSizeArray<ChildId>> !Sync for ChildWriteGuard<'op, 'node, 't, T, C> {}
[INFO] [stderr]      |                                                          ^^^^^
[INFO] [stderr]      |
[INFO] [stderr]      = note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
[INFO] [stderr]      = help: add `#![feature(negative_impls)]` to the crate attributes to enable
[INFO] [stderr] 
[INFO] [stderr] error[E0635]: unknown feature `fixed_size_array`
[INFO] [stderr]  --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/bonzai-0.2.1/src/lib.rs:1:12
[INFO] [stderr]   |
[INFO] [stderr] 1 | #![feature(fixed_size_array)]
[INFO] [stderr]   |            ^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0557, E0635, E0658.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: could not compile `bonzai` due to 9 previous errors
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] running `Command { std: "docker" "inspect" "06b941227803e9c1e0388101fdb5afa13bd380ec967ccfb48afb446497defb2f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "06b941227803e9c1e0388101fdb5afa13bd380ec967ccfb48afb446497defb2f", kill_on_drop: false }`
[INFO] [stdout] 06b941227803e9c1e0388101fdb5afa13bd380ec967ccfb48afb446497defb2f