c_str 1.0.1

The old c_str functions
Build #2637 2016-08-01T11:32:17.440556+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 c_str v1.0.1
Documenting c_str v1.0.1
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs --crate-name c_str -o /home/cratesfyi/c_str-1.0.1/doc -L dependency=/home/cratesfyi/c_str-1.0.1/debug -L dependency=/home/cratesfyi/c_str-1.0.1/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:160:25: 160:27 error: invalid suffix `i` for numeric literal 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:160         let mut count = 0i;
^~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:160:25: 160:27 help: the suffix must be one of the integral types (`u32`, `isize`, etc) 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:183:25: 183:27 error: invalid suffix `i` for numeric literal 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:183         let mut count = 0i;
^~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:183:25: 183:27 help: the suffix must be one of the integral types (`u32`, `isize`, etc) 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:339:25: 339:27 error: invalid suffix `i` for numeric literal 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:339         let mut decal = 0i;
^~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:339:25: 339:27 help: the suffix must be one of the integral types (`u32`, `isize`, etc) 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:173:78: 173:82 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:173             let v : Vec<u8> = Vec::from_raw_buf(c_str as *const u8, count as uint);
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:173:78: 173:82 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/c_str-1.0.1/src/c_str.rs:196:78: 196:82 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:196             let v : Vec<u8> = Vec::from_raw_buf(c_str as *const u8, count as uint);
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:196:78: 196:82 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/c_str-1.0.1/src/c_str.rs:204:16: 204:20 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:204 const BUF_LEN: uint = 128;
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:204:16: 204:20 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/c_str-1.0.1/src/c_str.rs:263:9: 263:34 error: failed to resolve. Could not find `bytes` in `std::slice` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:263         slice::bytes::copy_memory(&mut buf, v);
^~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:283:14: 283:19 error: unresolved name `range` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:283     for i in range(0, v.len()) {
^~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:285:37: 285:40 error: type name `int` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:285             let p = buf.offset(i as int);
^~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:285:37: 285:40 help: no candidates by the name of `int` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:324:51: 324:55 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:324                                     count: Option<uint>,
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:324:51: 324:55 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/c_str-1.0.1/src/c_str.rs:326:40: 326:44 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:326                                     -> uint where
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:326:40: 326:44 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/c_str-1.0.1/src/c_str.rs:330:23: 330:27 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:330     let mut curr_ptr: uint = buf as uint;
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:330:23: 330:27 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/c_str-1.0.1/src/c_str.rs:330:37: 330:41 error: type name `uint` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:330     let mut curr_ptr: uint = buf as uint;
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:330:37: 330:41 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/c_str-1.0.1/src/c_str.rs:243:5: 247:6 error: type parameter `T` shadows another type parameter of the same name [E0194]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:243     fn with_c_str<T, F>(&self, f: F) -> T where
^
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:250:5: 254:6 error: type parameter `T` shadows another type parameter of the same name [E0194]
.cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs:250     unsafe fn with_c_str_unchecked<T, F>(&self, f: F) -> T where
^
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `c_str v1.0.1`, intermediate artifacts can be found at `/home/cratesfyi/c_str-1.0.1`,
cause: ChainedError {
error: Could not document `c_str`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/c_str-1.0.1/src/c_str.rs --crate-name c_str -o /home/cratesfyi/c_str-1.0.1/doc -L dependency=/home/cratesfyi/c_str-1.0.1/debug -L dependency=/home/cratesfyi/c_str-1.0.1/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.