Build #52851 2017-06-03T00:18:06.998716+00:00
# 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 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 -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[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 `uint` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/rpc.rs:31:13
|
31 | let ty: uint = try!(Decodable::decode(s));
| ^^^^ 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:132:39
|
132 | 0x90 ... 0x9f => Ok((c as uint) & 0x0F),
| ^^^^ 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:133:64
|
133 | 0xdc => self.rd.read_be_u16().map(|i| i as 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:134:64
|
134 | 0xdd => self.rd.read_be_u32().map(|i| i as 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:142:39
|
142 | 0x80 ... 0x8f => Ok((c as uint) & 0x0F),
| ^^^^ 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:143:64
|
143 | 0xde => self.rd.read_be_u16().map(|i| i as 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:144:64
|
144 | 0xdf => self.rd.read_be_u32().map(|i| i as 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[E0425]: cannot find function `range` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:151:18
|
151 | for _ in range(0, len) {
| ^^^^^ 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[E0425]: cannot find function `range` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:159:18
|
159 | for _ in range(0, len) {
| ^^^^^ 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[E0412]: cannot find type `uint` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:200:51
|
200 | 0xa0 ... 0xbf => self._read_raw((c as uint) & 0x1F).map(|i| Value::Str(i)),
| ^^^^ 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:202:52
|
202 | let l = try!(self.rd.read_u8()) as 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:206:56
|
206 | let l = try!(self.rd.read_be_u16()) as 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:210:56
|
210 | let l = try!(self.rd.read_be_u32()) as 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:215:52
|
215 | let l = try!(self.rd.read_u8()) as 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:220:56
|
220 | let l = try!(self.rd.read_be_u16()) as 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:226:56
|
226 | let l = try!(self.rd.read_be_u32()) as 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:230:54
|
230 | 0x90 ... 0x9f => self.decode_array((c as uint) & 0x0F),
| ^^^^ 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:231:70
|
231 | 0xdc => { let l = try!(self.rd.read_be_u16()) as uint; self.decode_array(l) },
| ^^^^ 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:232:70
|
232 | 0xdd => { let l = try!(self.rd.read_be_u32()) as uint; self.decode_array(l) },
| ^^^^ 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:234:52
|
234 | 0x80 ... 0x8f => self.decode_map((c as uint) & 0x0F),
| ^^^^ 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:235:70
|
235 | 0xde => { let l = try!(self.rd.read_be_u16()) as uint; self.decode_map(l) },
| ^^^^ 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:236:70
|
236 | 0xdf => { let l = try!(self.rd.read_be_u32()) as uint; self.decode_map(l) },
| ^^^^ 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:243:66
|
243 | 0xc7 => { let l = try!(self.rd.read_u8()) as uint; self.decode_ext(l) },
| ^^^^ 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:244:70
|
244 | 0xc8 => { let l = try!(self.rd.read_be_u16()) as uint; self.decode_ext(l) },
| ^^^^ 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:245:70
|
245 | 0xc9 => { let l = try!(self.rd.read_be_u32()) as uint; self.decode_ext(l) },
| ^^^^ 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[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[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[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[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:374:51
|
374 | 0xa0 ... 0xbf => self._read_str((c as uint) & 0x1F),
| ^^^^ 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:376:52
|
376 | let l = try!(self.rd.read_u8()) as 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:380:56
|
380 | let l = try!(self.rd.read_be_u16()) as 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:384:56
|
384 | let l = try!(self.rd.read_be_u32()) as 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: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 `Writer` in module `io`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/msgpack-0.1.0/src/lib.rs:541:63
|
541 | let mut encoder = Encoder::new(&mut m as &mut io::Writer);
| ^^^^^^ 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:606:43
|
606 | } else if len <= std::u16::MAX as 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:610:45
|
610 | assert!(len <= std::u32::MAX as uint); // XXX
| ^^^^ 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[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[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[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[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: 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 previous error(s)
thread 'main' panicked at '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 -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.