istring 0.1.1

inlinable String: like std::String, except small strings do not require a separate allocation.
Build #638792017-07-03T10:54:40.713350+00:00
# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)# docs.rs version
cratesfyi 0.4.1 (003e49d 2017-06-08)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading istring v0.1.1
Documenting istring v0.1.1
Running `rustdoc --crate-name istring .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `alloc::String`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs:38:13
|
38 | use alloc::{String, Vec};
|             ^^^^^^ no `String` in the root

error[E0432]: unresolved import `alloc::Vec`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs:38:21
|
38 | use alloc::{String, Vec};
|                     ^^^ no `Vec` in the root

error[E0432]: unresolved import `alloc::borrow::Cow`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs:39:5
|
39 | use alloc::borrow::Cow;
|     ^^^^^^^^^^^^^^^^^^ Could not find `borrow` in `alloc`

error[E0432]: unresolved import `alloc::string::FromUtf8Error`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs:40:5
|
40 | use alloc::string::FromUtf8Error;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `string` in `alloc`

error[E0119]: conflicting implementations of trait `core::cmp::PartialEq<[type error]>` for type `IString`:
--> .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs:406:1
|
401 | / impl PartialEq<String> for IString {
402 | |     fn eq(&self, rhs: &String) -> bool {
403 | |         self.as_str() == rhs
404 | |     }
405 | | }
| |_- first implementation here
406 | / impl PartialEq for IString {
407 | |     fn eq(&self, rhs: &IString) -> bool {
408 | |         self.as_str() == rhs.as_str()
409 | |     }
410 | | }
| |_^ conflicting implementation for `IString`

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `istring`.,
cause: process didn't exit successfully: `rustdoc --crate-name istring .cargo/registry/src/github.com-1ecc6299db9ec823/istring-0.1.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}', src/bin/cratesfyi.rs:142
note: Run with `RUST_BACKTRACE=1` for a backtrace.