artifact 0.0.13

A logging library which allows settings to be specified through cargo features.
Build #18422 2016-08-13T14:45:24.840624+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 artifact v0.0.13
Compiling lazy_static v0.2.1
Running `rustc .cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.1/src/lib.rs --crate-name lazy_static --crate-type lib -g -C metadata=359f5533c970cd71 -C extra-filename=-359f5533c970cd71 --out-dir /home/cratesfyi/artifact-0.0.13/debug/deps --emit=dep-info,link -L dependency=/home/cratesfyi/artifact-0.0.13/debug/deps -L dependency=/home/cratesfyi/artifact-0.0.13/debug/deps --cap-lints allow`
Documenting artifact v0.0.13
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/lib.rs --crate-name artifact -o /home/cratesfyi/artifact-0.0.13/doc -L dependency=/home/cratesfyi/artifact-0.0.13/debug -L dependency=/home/cratesfyi/artifact-0.0.13/debug/deps --extern lazy_static=/home/cratesfyi/artifact-0.0.13/debug/deps/liblazy_static-359f5533c970cd71.rlib`
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/lib.rs:33:5: 33:27 error: unresolved import `std::thread::JoinGuard`. There is no `JoinGuard` in `std::thread` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/lib.rs:33 use std::thread::JoinGuard;
^~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:24:5: 24:24 error: unresolved import `std::old_io::stderr`. Could not find `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:24 use std::old_io::stderr;
^~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:26:27: 26:36 error: unresolved import `std::thread::JoinGuard`. There is no `JoinGuard` in `std::thread` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:26 use std::thread::{Thread, JoinGuard};
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:27:5: 27:26 error: unresolved import `std::old_io::fs::File`. Could not find `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:27 use std::old_io::fs::File;
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/comm.rs:28:5: 28:27 error: unresolved import `std::thread::JoinGuard`. There is no `JoinGuard` in `std::thread` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/comm.rs:28 use std::thread::JoinGuard;
^~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/logger.rs:46:11: 46:15 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/logger.rs:46   FileLog(Path),
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/logger.rs:46:11: 46:15 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:114:69: 114:73 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:114   fn add_file_logger(&mut self, logger:String, level:LogLevel, path:Path) {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:114:69: 114:73 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:64:45: 64:53 error: no method named `as_slice` found for type `std::string::String` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:64         let _ = stderr().write_line(message.as_slice());
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:67:61: 67:69 error: no method named `as_slice` found for type `std::string::String` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:67         let _ = file_writer.borrow_mut().write_line(message.as_slice());
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:100:42: 100:50 error: no method named `as_slice` found for type `&std::string::String` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:100       self.write_message(existing_logger.as_slice(),
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:115:33: 115:41 error: no method named `as_slice` found for type `std::string::String` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:115     if !self.loggers.get(logger.as_slice()).is_none() {
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:155:3: 155:17 error: no associated item named `scoped` found for type `std::thread::Thread` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:155   Thread::scoped(move | | logger_main(rx))
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:163:40: 163:48 error: no method named `as_slice` found for type `std::string::String` in the current scope 
.cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/internal/task.rs:163         task_info.write_message(logger.as_slice(), level, message);
^~~~~~~~
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `artifact v0.0.13`, intermediate artifacts can be found at `/home/cratesfyi/artifact-0.0.13`,
cause: ChainedError {
error: Could not document `artifact`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/artifact-0.0.13/src/lib.rs --crate-name artifact -o /home/cratesfyi/artifact-0.0.13/doc -L dependency=/home/cratesfyi/artifact-0.0.13/debug -L dependency=/home/cratesfyi/artifact-0.0.13/debug/deps --extern lazy_static=/home/cratesfyi/artifact-0.0.13/debug/deps/liblazy_static-359f5533c970cd71.rlib` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.