msgpack 0.1.0

MessagePack serialization implementation for Rust

Build #90268 2018-03-06 02:27:49

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 (5c1d29af0 2018-03-03)

# docs.rs version cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log Updating registry `https://github.com/rust-lang/crates.io-index` Downloading msgpack v0.1.0 Documenting msgpack v0.1.0 Running `rustdoc --crate-name msgpack .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps` error: invalid suffix `u` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:16:10 | 16 | (0u, msgid, method, params).encode(s) | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `u` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:19:10 | 19 | (1u, msgid, error, result).encode(s) | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `u` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:22:10 | 22 | (2u, method, params).encode(s) | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:891:16 | 891 | v.insert(1i, 2i); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:891:20 | 891 | v.insert(1i, 2i); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:892:16 | 892 | v.insert(3i, 4i); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:892:20 | 892 | v.insert(3i, 4i); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:898:33 | 898 | let v: Option<int> = Some(1i); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:907:57 | 907 | let v: (Option<int>, Option<int>) = (None, Some(1i)); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:910:51 | 910 | let v: (Option<int>, Option<int>) = (Some(1i), Some(1i)); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error: invalid suffix `i` for numeric literal --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:910:61 | 910 | let v: (Option<int>, Option<int>) = (Some(1i), Some(1i)); | ^^ | = help: the suffix must be one of the integral types (`u32`, `isize`, etc) error[E0432]: unresolved import `std::io::MemWriter` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:10:26 | 10 | use std::io::{BufReader, MemWriter, IoResult, IoError, InvalidInput}; | ^^^^^^^^^ no `MemWriter` in `io`. Did you mean to use `BufWriter`? error[E0432]: unresolved import `std::io::IoResult` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:10:37 | 10 | use std::io::{BufReader, MemWriter, IoResult, IoError, InvalidInput}; | ^^^^^^^^ no `IoResult` in `io`. Did you mean to use `Result`? error[E0432]: unresolved import `std::io::IoError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:10:47 | 10 | use std::io::{BufReader, MemWriter, IoResult, IoError, InvalidInput}; | ^^^^^^^ no `IoError` in `io`. Did you mean to use `Error`? error[E0432]: unresolved import `std::io::InvalidInput` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:10:56 | 10 | use std::io::{BufReader, MemWriter, IoResult, IoError, InvalidInput}; | ^^^^^^^^^^^^ no `InvalidInput` in `io` error[E0432]: unresolved import `std::io::IoError` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:4:15 | 4 | use std::io::{IoError, IoResult}; | ^^^^^^^ no `IoError` in `io`. Did you mean to use `Error`? error[E0432]: unresolved import `std::io::IoResult` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:4:24 | 4 | use std::io::{IoError, IoResult}; | ^^^^^^^^ no `IoResult` in `io`. Did you mean to use `Result`? error[E0407]: method `read_uint` is not a member of trait `serialize::Decoder` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:269:5 | 269 | / fn read_uint(&mut self) -> IoResult<uint> { 270 | | match try!(self._read_unsigned()).to_uint() { 271 | | Some(i) => Ok(i), 272 | | None => Err(_invalid_input("value does not fit inside uint")) 273 | | } 274 | | } | |_____^ not a member of trait `serialize::Decoder` error[E0407]: method `read_int` is not a member of trait `serialize::Decoder` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:306:5 | 306 | / fn read_int(&mut self) -> IoResult<int> { 307 | | match try!(self._read_signed()).to_int() { 308 | | Some(i) => Ok(i), 309 | | None => Err(_invalid_input("value does not fit inside int")) 310 | | } 311 | | } | |_____^ not a member of trait `serialize::Decoder` error[E0407]: method `emit_uint` is not a member of trait `serialize::Encoder` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:652:5 | 652 | fn emit_uint(&mut self, v: uint) -> IoResult<()> { self._emit_unsigned(v as u64) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `serialize::Encoder` error[E0407]: method `emit_int` is not a member of trait `serialize::Encoder` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:663:5 | 663 | fn emit_int(&mut self, v: int) -> IoResult<()> { self._emit_signed(v as i64) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `serialize::Encoder` error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:28:9 | 28 | impl<R: Reader> serialize::Decodable<Decoder<R>, IoError> for RpcMessage { | ^^^^^^ not found in this scope error[E0412]: cannot find type `Reader` in module `io` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:34:28 | 34 | fn read_float(rd: &mut io::Reader) -> IoResult<f32> { | ^^^^^^ did you mean `Read`? error[E0412]: cannot find type `Reader` in module `io` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:39:29 | 39 | fn read_double(rd: &mut io::Reader) -> IoResult<f64> { | ^^^^^^ did you mean `Read`? error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:48:23 | 48 | pub struct Decoder<R: Reader> { | ^^^^^^ not found in this scope error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:53:9 | 53 | impl<R: Reader> Decoder<R> { | ^^^^^^ not found in this scope error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:64:13 | 64 | impl<'a, R: Reader> Decoder<R> { | ^^^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:117:34 | 117 | fn _read_raw(&mut self, len: uint) -> IoResult<Vec<u8>> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:121:34 | 121 | fn _read_str(&mut self, len: uint) -> IoResult<String> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:128:45 | 128 | fn _read_vec_len(&mut self) -> IoResult<uint> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:139:45 | 139 | fn _read_map_len(&mut self) -> IoResult<uint> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:149:37 | 149 | fn decode_array(&mut self, len: uint) -> IoResult<Value> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:157:35 | 157 | fn decode_map(&mut self, len: uint) -> IoResult<Value> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:167:35 | 167 | fn decode_ext(&mut self, len: uint) -> IoResult<Value> { | ^^^^ not found in this scope error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:255:13 | 255 | impl<'a, R: Reader> serialize::Decoder<IoError> for Decoder<R> { | ^^^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:269:41 | 269 | fn read_uint(&mut self) -> IoResult<uint> { | ^^^^ not found in this scope error[E0412]: cannot find type `int` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:306:40 | 306 | fn read_int(&mut self) -> IoResult<int> { | ^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:397:37 | 397 | where F: FnMut(&mut Decoder<R>, uint) -> IoResult<T> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:408:52 | 408 | fn read_enum_variant_arg<T,F>(&mut self, _idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:415:38 | 415 | where F: FnOnce(&mut Decoder<R>, uint) -> IoResult<T> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:421:43 | 421 | fn read_seq_elt<T,F>(&mut self, _idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:427:54 | 427 | fn read_struct<T,F>(&mut self, _name: &str, len: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:438:61 | 438 | fn read_struct_field<T,F>(&mut self, _name: &str, _idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:452:38 | 452 | where F: FnOnce(&mut Decoder<R>, uint) -> IoResult<T> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:457:47 | 457 | fn read_map_elt_key<T,F>(&mut self, _idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:460:47 | 460 | fn read_map_elt_val<T,F>(&mut self, _idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:467:37 | 467 | where F: FnMut(&mut Decoder<R>, uint) -> IoResult<T> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:475:49 | 475 | idx: uint, | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:483:44 | 483 | fn read_tuple<T,F>(&mut self, exp_len: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:493:44 | 493 | fn read_tuple_arg<T,F>(&mut self, idx: uint, f: F) -> IoResult<T> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:499:47 | 499 | _name: &str, len: uint, | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:507:38 | 507 | idx: uint, | ^^^^ not found in this scope error[E0405]: cannot find trait `Reader` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:519:9 | 519 | impl<R: Reader> serialize::Decodable<Decoder<R>, IoError> for Value { | ^^^^^^ not found in this scope error[E0405]: cannot find trait `Writer` in module `io` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:528:22 | 528 | wr: &'a mut (io::Writer + 'a) | ^^^^^^ did you mean `Write`? error[E0412]: cannot find type `Writer` in module `io` --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:534:32 | 534 | pub fn new(wr: &'a mut io::Writer) -> Encoder<'a> { | ^^^^^^ did you mean `Write`? error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:600:34 | 600 | fn _emit_len(&mut self, len: uint, (op1, sz1): (u8, uint), (op2, sz2): (u8, uint), op3: u8, op4: u8) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:600:57 | 600 | fn _emit_len(&mut self, len: uint, (op1, sz1): (u8, uint), (op2, sz2): (u8, uint), op3: u8, op4: u8) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:600:81 | 600 | fn _emit_len(&mut self, len: uint, (op1, sz1): (u8, uint), (op2, sz2): (u8, uint), op3: u8, op4: u8) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:618:38 | 618 | fn _emit_str_len(&mut self, len: uint) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:625:38 | 625 | fn _emit_bin_len(&mut self, len: uint) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:633:40 | 633 | fn _emit_array_len(&mut self, len: uint) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:640:38 | 640 | fn _emit_map_len(&mut self, len: uint) -> IoResult<()> { | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:652:32 | 652 | fn emit_uint(&mut self, v: uint) -> IoResult<()> { self._emit_unsigned(v as u64) } | ^^^^ not found in this scope error[E0412]: cannot find type `int` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:663:31 | 663 | fn emit_int(&mut self, v: int) -> IoResult<()> { self._emit_signed(v as i64) } | ^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:706:57 | 706 | fn emit_enum_variant<F>(&mut self, name: &str, _id: uint, cnt: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:706:68 | 706 | fn emit_enum_variant<F>(&mut self, name: &str, _id: uint, cnt: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:712:50 | 712 | fn emit_enum_variant_arg<F>(&mut self, _idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:717:63 | 717 | fn emit_enum_struct_variant<F>(&mut self, name: &str, id: uint, cnt: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:717:74 | 717 | fn emit_enum_struct_variant<F>(&mut self, name: &str, id: uint, cnt: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:722:71 | 722 | fn emit_enum_struct_variant_field<F>(&mut self, _name: &str, idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:730:52 | 730 | fn emit_struct<F>(&mut self, _name: &str, len: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:736:59 | 736 | fn emit_struct_field<F>(&mut self, _name: &str, _idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:741:38 | 741 | fn emit_tuple<F>(&mut self, len: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:746:42 | 746 | fn emit_tuple_arg<F>(&mut self, idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:753:31 | 753 | len: uint, | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:759:49 | 759 | fn emit_tuple_struct_arg<F>(&mut self, idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:772:36 | 772 | fn emit_seq<F>(&mut self, len: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:778:41 | 778 | fn emit_seq_elt<F>(&mut self, _idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:783:36 | 783 | fn emit_map<F>(&mut self, len: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:789:45 | 789 | fn emit_map_elt_key<F>(&mut self, _idx: uint, mut f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0412]: cannot find type `uint` in this scope --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:794:45 | 794 | fn emit_map_elt_val<F>(&mut self, _idx: uint, f: F) -> IoResult<()> | ^^^^ not found in this scope error[E0658]: The attribute `deriving` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642) --> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:18:1 | 18 | #[deriving(Show)] | ^^^^^^^^^^^^^^^^^ | = help: add #![feature(custom_attribute)] to the crate attributes to enable error: aborting due to 82 previous errors You've got a few errors: E0405, E0407, E0412, E0432, E0658 If you want more information on an error, try using "rustc --explain E0405" thread 'main' panicked at 'Error( CargoError( ChainedError { error: Could not document `msgpack`., cause: process didn't exit successfully: `rustdoc --crate-name msgpack .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -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.