simple_csv 0.0.4

A simple CSV parsing implementation
Build #7074 2016-08-04T17:08:22.263333+00:00
# rustc version
rustc 1.12.0-nightly (54c0dcfd6 2016-07-28)
# docs.rs version
cratesfyi 0.2.0 (5dbd676 2016-07-30)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading simple_csv v0.0.4
Documenting simple_csv v0.0.4
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs --crate-name simple_csv -o /home/cratesfyi/simple_csv-0.0.4/doc -L dependency=/home/cratesfyi/simple_csv-0.0.4/debug -L dependency=/home/cratesfyi/simple_csv-0.0.4/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10:40: 10:43 error: invalid suffix `u` for numeric literal 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10 static STRING_INITIAL_CAPACITY: uint = 64u;
^~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10:40: 10:43 help: the suffix must be one of the integral types (`u32`, `isize`, etc) 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:137:24: 137:26 error: invalid suffix `u` for numeric literal 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:137 		let mut line_count = 0u;
^~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:137:24: 137:26 help: the suffix must be one of the integral types (`u32`, `isize`, etc) 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:6:15: 6:23 error: unresolved import `std::io::IoResult`. There is no `IoResult` in `std::io`. Did you mean to use `Result`? [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:6 use std::io::{IoResult,IoErrorKind};
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:6:24: 6:35 error: unresolved import `std::io::IoErrorKind`. There is no `IoErrorKind` in `std::io`. Did you mean to use `ErrorKind`? [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:6 use std::io::{IoResult,IoErrorKind};
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10:33: 10:37 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10 static STRING_INITIAL_CAPACITY: uint = 64u;
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:10:33: 10:37 help: no candidates by the name of `uint` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:20:25: 20:31 error: trait `Buffer` is not in scope [E0405]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:20 pub struct SimpleCsv<B: Buffer> {
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:20:25: 20:31 help: no candidates by the name of `Buffer` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:29:9: 29:15 error: trait `Buffer` is not in scope [E0405]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:29 impl<B: Buffer> SimpleCsv<B> {
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:29:9: 29:15 help: no candidates by the name of `Buffer` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:183:9: 183:15 error: trait `Buffer` is not in scope [E0405]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:183 impl<B: Buffer> Iterator<Vec<String>> for SimpleCsv<B> {
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:183:9: 183:15 help: no candidates by the name of `Buffer` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198:29: 198:33 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198     fn size_hint(&self) -> (uint, Option<uint>) {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198:29: 198:33 help: no candidates by the name of `uint` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198:42: 198:46 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198     fn size_hint(&self) -> (uint, Option<uint>) {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs:198:42: 198:46 help: no candidates by the name of `uint` found in your project; maybe you misspelled the name or forgot to import an external crate? 
error: cannot continue compilation due to previous error 
thread 'main' panicked at 'ChainedError {
error: failed to compile `simple_csv v0.0.4`, intermediate artifacts can be found at `/home/cratesfyi/simple_csv-0.0.4`,
cause: ChainedError {
error: Could not document `simple_csv`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/simple_csv-0.0.4/src/lib.rs --crate-name simple_csv -o /home/cratesfyi/simple_csv-0.0.4/doc -L dependency=/home/cratesfyi/simple_csv-0.0.4/debug -L dependency=/home/cratesfyi/simple_csv-0.0.4/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.