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.19.0-dev (28a93c1f4 2017-05-31)
# docs.rs version cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)
# build log Updating registry `https://github.com/rust-lang/crates.io-index` Downloading msgpacknet v0.1.1 Downloading rmp-serde v0.8.2 Fresh num-traits v0.1.37 Fresh byteorder v1.0.0 Fresh cfg-if v0.1.0 Fresh libc v0.2.23 Fresh num-integer v0.1.34 Fresh rmp v0.8.6 Fresh rand v0.3.15 Fresh net2 v0.2.29 Fresh time v0.1.37 Fresh num-iter v0.1.33 Fresh num v0.1.37 Fresh serde v0.6.15 Compiling rmp-serde v0.8.2 Running `rustc --crate-name rmp_serde .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=3a9426218a811e1f -C extra-filename=-3a9426218a811e1f --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern rmp=/home/cratesfyi/cratesfyi/debug/deps/librmp-d9d725a7b40195c0.rlib --extern-version rmp=rmp,0.8.6 --extern serde=/home/cratesfyi/cratesfyi/debug/deps/libserde-eaf5b137e24884e3.rlib --extern-version serde=serde,0.6.15 --cap-lints allow` error[E0432]: unresolved import `rmp::decode::FixedValueReadError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:11:5 | 11 | FixedValueReadError, | ^^^^^^^^^^^^^^^^^^^ no `FixedValueReadError` in `decode`. Did you mean to use `ValueReadError`? error[E0432]: unresolved import `rmp::decode::ReadError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:13:5 | 13 | ReadError, | ^^^^^^^^^ no `ReadError` in `decode` error[E0432]: unresolved import `rmp::decode::read_array_size` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:15:5 | 15 | read_array_size, | ^^^^^^^^^^^^^^^ no `read_array_size` in `decode`. Did you mean to use `read_array_len`? error[E0432]: unresolved import `rmp::decode::read_numeric_data` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:16:5 | 16 | read_numeric_data, | ^^^^^^^^^^^^^^^^^ no `read_numeric_data` in `decode` error[E0432]: unresolved import `rmp::decode::read_str_data` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:17:5 | 17 | read_str_data, | ^^^^^^^^^^^^^ no `read_str_data` in `decode`. Did you mean to use `read_str_ref`? error[E0432]: unresolved import `rmp::decode::read_full` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:19:5 | 19 | read_full, | ^^^^^^^^^ no `read_full` in `decode`. Did you mean to use `read_u32`? error[E0432]: unresolved import `rmp::encode::write_sint_eff` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/encode.rs:11:5 | 11 | write_sint_eff, | ^^^^^^^^^^^^^^ no `write_sint_eff` in `encode`. Did you mean to use `write_sint`? error[E0432]: unresolved import `rmp::encode::WriteError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/encode.rs:18:5 | 18 | WriteError, | ^^^^^^^^^^ no `WriteError` in `encode` error[E0432]: unresolved import `rmp::encode::FixedValueWriteError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/encode.rs:19:5 | 19 | FixedValueWriteError, | ^^^^^^^^^^^^^^^^^^^^ no `FixedValueWriteError` in `encode`. Did you mean to use `ValueWriteError`? error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `decode::Error`: --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:126:1 | 116 | / impl From<FixedValueReadError> for Error { 117 | | fn from(err: FixedValueReadError) -> Error { 118 | | match err { 119 | | FixedValueReadError::UnexpectedEOF => Error::InvalidMarkerRead(ReadError::UnexpectedEOF), ... | 123 | | } 124 | | } | |_- first implementation here 125 | 126 | / impl From<ValueReadError> for Error { 127 | | fn from(err: ValueReadError) -> Error { 128 | | match err { 129 | | ValueReadError::TypeMismatch(marker) => Error::TypeMismatch(marker), ... | 133 | | } 134 | | } | |_^ conflicting implementation for `decode::Error` error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `decode::Error`: --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:137:1 | 116 | / impl From<FixedValueReadError> for Error { 117 | | fn from(err: FixedValueReadError) -> Error { 118 | | match err { 119 | | FixedValueReadError::UnexpectedEOF => Error::InvalidMarkerRead(ReadError::UnexpectedEOF), ... | 123 | | } 124 | | } | |_- first implementation here ... 137 | / impl<'a> From<DecodeStringError<'a>> for Error { 138 | | fn from(err: DecodeStringError) -> Error { 139 | | match err { 140 | | DecodeStringError::InvalidMarkerRead(err) => Error::InvalidMarkerRead(err), ... | 147 | | } 148 | | } | |_^ conflicting implementation for `decode::Error` error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `decode::Error`: --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:150:1 | 116 | / impl From<FixedValueReadError> for Error { 117 | | fn from(err: FixedValueReadError) -> Error { 118 | | match err { 119 | | FixedValueReadError::UnexpectedEOF => Error::InvalidMarkerRead(ReadError::UnexpectedEOF), ... | 123 | | } 124 | | } | |_- first implementation here ... 150 | / impl From<MarkerReadError> for Error { 151 | | fn from(err: MarkerReadError) -> Error { 152 | | Error::InvalidMarkerRead(From::from(err)) 153 | | } 154 | | } | |_^ conflicting implementation for `decode::Error` error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `decode::Error`: --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/decode.rs:156:1 | 116 | / impl From<FixedValueReadError> for Error { 117 | | fn from(err: FixedValueReadError) -> Error { 118 | | match err { 119 | | FixedValueReadError::UnexpectedEOF => Error::InvalidMarkerRead(ReadError::UnexpectedEOF), ... | 123 | | } 124 | | } | |_- first implementation here ... 156 | / impl From<serde::de::value::Error> for Error { 157 | | fn from(err: serde::de::value::Error) -> Error { 158 | | match err { 159 | | serde::de::value::Error::SyntaxError => Error::Syntax("unknown".into()), ... | 162 | | } 163 | | } | |_^ conflicting implementation for `decode::Error` error[E0119]: conflicting implementations of trait `std::convert::From<[type error]>` for type `encode::Error`: --> .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/encode.rs:71:1 | 63 | / impl From<FixedValueWriteError> for Error { 64 | | fn from(err: FixedValueWriteError) -> Error { 65 | | match err { 66 | | FixedValueWriteError(err) => Error::InvalidFixedValueWrite(err) 67 | | } 68 | | } 69 | | } | |_- first implementation here 70 | 71 | / impl From<ValueWriteError> for Error { 72 | | fn from(err: ValueWriteError) -> Error { 73 | | Error::InvalidValueWrite(err) 74 | | } 75 | | } | |_^ conflicting implementation for `encode::Error` error: aborting due to previous error(s) thread 'main' panicked at 'ChainedError { error: Could not compile `rmp-serde`., cause: process didn't exit successfully: `rustc --crate-name rmp_serde .cargo/registry/src/github.com-1ecc6299db9ec823/rmp-serde-0.8.2/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=3a9426218a811e1f -C extra-filename=-3a9426218a811e1f --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern rmp=/home/cratesfyi/cratesfyi/debug/deps/librmp-d9d725a7b40195c0.rlib --extern-version rmp=rmp,0.8.6 --extern serde=/home/cratesfyi/cratesfyi/debug/deps/libserde-eaf5b137e24884e3.rlib --extern-version serde=serde,0.6.15 --cap-lints allow` (exit code: 101) }', src/bin/cratesfyi.rs:136 note: Run with `RUST_BACKTRACE=1` for a backtrace.