cbor-no-std 0.3.0

cbor-no-std is a CBOR Deserializer for Rust which runs in a no_std environment.
Documentation
Build #115834 2018-09-06T23:14:56.498463+00:00
# rustc version
rustc 1.28.0-dev (b9bf4f162 2018-06-02)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading cbor-no-std v0.3.0
Documenting cbor-no-std v0.3.0
Running `rustdoc --crate-name cbor_no_std .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg 'feature="default"' --cfg 'feature="no_std"' -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0433]: failed to resolve. Could not find `collections` in `alloc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:5:12
|
5 | use alloc::collections::btree_map::BTreeMap;
|            ^^^^^^^^^^^ Could not find `collections` in `alloc`

error[E0433]: failed to resolve. Could not find `collections` in `alloc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/de.rs:1:12
|
1 | use alloc::collections::btree_map::BTreeMap;
|            ^^^^^^^^^^^ Could not find `collections` in `alloc`

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:17:9
|
17 |     Map(BTreeMap<Value, Value>),
|         ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3  | use alloc::BTreeMap;
|
3  | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:102:37
|
102 |     pub fn as_map(&self) -> Option<&BTreeMap<Value, Value>> {
|                                     ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:110:45
|
110 |     pub fn as_map_mut(&mut self) -> Option<&BTreeMap<Value, Value>> {
|                                             ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:119:22
|
119 | impl From<Value> for BTreeMap<Value, Value> {
|                      ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:120:34
|
120 |     fn from(mut value: Value) -> BTreeMap<Value, Value> {
|                                  ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:149:11
|
149 | impl From<BTreeMap<Value, Value>> for Value {
|           ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error[E0412]: cannot find type `BTreeMap` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/value.rs:150:18
|
150 |     fn from(map: BTreeMap<Value, Value>) -> Value {
|                  ^^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
3   | use alloc::BTreeMap;
|
3   | use alloc::btree_map::BTreeMap;
|

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `cbor-no-std`.,
cause: process didn't exit successfully: `rustdoc --crate-name cbor_no_std .cargo/registry/src/github.com-1ecc6299db9ec823/cbor-no-std-0.3.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg feature="default" --cfg feature="no_std" -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -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.