compiletest_rs 0.1.2

The compiletest utility from the Rust compiler as a standalone testing harness
Build #22309 2016-08-16T10:19:38.652806+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 compiletest_rs v0.1.2
Compiling log v0.3.6
Running `rustc .cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.6/src/lib.rs --crate-name log --crate-type lib -g --cfg feature=\"use_std\" --cfg feature=\"default\" -C metadata=bf16bb9a4912b11d -C extra-filename=-bf16bb9a4912b11d --out-dir /home/cratesfyi/compiletest_rs-0.1.2/debug/deps --emit=dep-info,link -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps --cap-lints allow`
Documenting compiletest_rs v0.1.2
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs --crate-name compiletest_rs -o /home/cratesfyi/compiletest_rs-0.1.2/doc -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps --extern log=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps/liblog-bf16bb9a4912b11d.rlib`
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1152:23: 1152:30 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1152     let ch = haystack.char_at(*idx);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1163:27: 1163:34 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1163         let ch = haystack.char_at(i);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1183:27: 1183:34 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/runtest.rs:1183         let ch = haystack.char_at(haystack_i);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/errors.rs:78:37: 78:44 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/errors.rs:78     let (follow, adjusts) = if line.char_at(start + tag.len()) == '|' {
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:272:38: 272:45 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:272                 if full_version_line.char_at(pos + 1) != '.' { continue }
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:273:39: 273:46 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:273                 if !full_version_line.char_at(pos + 2).is_digit(10) { continue }
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:274:49: 274:64 error: no method named `char_at_reverse` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:274                 if pos > 0 && full_version_line.char_at_reverse(pos).is_digit(10) {
^~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:279:41: 279:48 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:279                       full_version_line.char_at(end).is_digit(10) {
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:312:43: 312:50 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:312                 let l = full_version_line.char_at(pos + 1);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:314:43: 314:50 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:314                 let d = full_version_line.char_at(pos + 2);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:316:43: 316:50 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:316                 let b = full_version_line.char_at(pos + 3);
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:318:46: 318:53 error: no method named `char_at` found for type `&str` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs:318                 let dash = full_version_line.char_at(pos + 4);
^~~~~~~
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `compiletest_rs v0.1.2`, intermediate artifacts can be found at `/home/cratesfyi/compiletest_rs-0.1.2`,
cause: ChainedError {
error: Could not document `compiletest_rs`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/compiletest_rs-0.1.2/src/compiletest.rs --crate-name compiletest_rs -o /home/cratesfyi/compiletest_rs-0.1.2/doc -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug -L dependency=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps --extern log=/home/cratesfyi/compiletest_rs-0.1.2/debug/deps/liblog-bf16bb9a4912b11d.rlib` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.