[go: up one dir, main page]

hashmap_core 0.1.5

Implementation of HashMap and HashSet for no_std environments.
Documentation
Build #97673 2018-04-29 23:57:41

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.26.0-dev (0eb87c9bf 2018-03-16)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading hashmap_core v0.1.5
Documenting hashmap_core v0.1.5
Running `rustdoc --crate-name hashmap_core .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180316-1.26.0-dev-0eb87c9bf -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `alloc_crate::alloc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/lib.rs:24:26
|
24 |     pub use alloc_crate::alloc::{oom, Global};
|                          ^^^^^ Could not find `alloc` in `alloc_crate`

error[E0432]: unresolved import `core::alloc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/lib.rs:25:19
|
25 |     pub use core::alloc::*;
|                   ^^^^^ Could not find `alloc` in `core`

error[E0412]: cannot find type `CollectionAllocErr` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/map.rs:46:61
|
46 |     fn try_raw_capacity(&self, len: usize) -> Result<usize, CollectionAllocErr> {
|                                                             ^^^^^^^^^^^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11 | use alloc_crate::allocator::CollectionAllocErr;
|
11 | use alloc_crate::heap::CollectionAllocErr;
|

error[E0412]: cannot find type `CollectionAllocErr` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/map.rs:810:68
|
810 |     pub fn try_reserve(&mut self, additional: usize) -> Result<(), CollectionAllocErr> {
|                                                                    ^^^^^^^^^^^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11  | use alloc_crate::allocator::CollectionAllocErr;
|
11  | use alloc_crate::heap::CollectionAllocErr;
|

error[E0412]: cannot find type `CollectionAllocErr` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/map.rs:834:64
|
834 |     fn try_resize(&mut self, new_raw_cap: usize) -> Result<(), CollectionAllocErr> {
|                                                                ^^^^^^^^^^^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11  | use alloc_crate::allocator::CollectionAllocErr;
|
11  | use alloc_crate::heap::CollectionAllocErr;
|

error[E0412]: cannot find type `CollectionAllocErr` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/table.rs:724:80
|
724 |     unsafe fn try_new_uninitialized(capacity: usize) -> Result<RawTable<K, V>, CollectionAllocErr> {
|                                                                                ^^^^^^^^^^^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11  | use alloc_crate::allocator::CollectionAllocErr;
|
11  | use alloc_crate::heap::CollectionAllocErr;
|

error[E0412]: cannot find type `CollectionAllocErr` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/table.rs:808:63
|
808 |     pub fn try_new(capacity: usize) -> Result<RawTable<K, V>, CollectionAllocErr> {
|                                                               ^^^^^^^^^^^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11  | use alloc_crate::allocator::CollectionAllocErr;
|
11  | use alloc_crate::heap::CollectionAllocErr;
|

error[E0658]: attributes on type parameter bindings are experimental (see issue #34761)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/table.rs:1174:13
|
1174 | unsafe impl<#[may_dangle] K, #[may_dangle] V> Drop for RawTable<K, V> {
|             ^^^^^^^^^^^^^
|
= help: add #![feature(generic_param_attrs)] to the crate attributes to enable

error[E0658]: attributes on type parameter bindings are experimental (see issue #34761)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/table.rs:1174:30
|
1174 | unsafe impl<#[may_dangle] K, #[may_dangle] V> Drop for RawTable<K, V> {
|                              ^^^^^^^^^^^^^
|
= help: add #![feature(generic_param_attrs)] to the crate attributes to enable

error: aborting due to 9 previous errors

Some errors occurred: E0412, E0432, E0658.
For more information about an error, try `rustc --explain E0412`.
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `hashmap_core`.,
cause: process didn't exit successfully: `rustdoc --crate-name hashmap_core .cargo/registry/src/github.com-1ecc6299db9ec823/hashmap_core-0.1.5/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180316-1.26.0-dev-0eb87c9bf -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.