fern 0.1.12

Fern is a simple runtime-configurable logging library
Build #1451 2016-07-31T13:16:57.900565+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 fern v0.1.12
Documenting fern v0.1.12
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/lib.rs --crate-name fern -o /home/cratesfyi/fern-0.1.12/doc -L dependency=/home/cratesfyi/fern-0.1.12/debug -L dependency=/home/cratesfyi/fern-0.1.12/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:1:5: 1:22 error: unresolved import `std::old_io`. There is no `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:1 use std::old_io as io;
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:2:5: 2:23 error: unresolved import `std::old_io::stdio`. Could not find `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:2 use std::old_io::stdio;
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:1:5: 1:22 error: unresolved import `std::old_io`. There is no `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:1 use std::old_io as io;
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:2:5: 2:23 error: unresolved import `std::old_io::stdio`. Could not find `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:2 use std::old_io::stdio;
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:1:5: 1:22 error: unresolved import `std::old_io`. There is no `old_io` in `std` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:1 use std::old_io as io;
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:35:10: 35:14 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:35     File(Path),
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:35:10: 35:14 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:57:28: 57:38 error: failed to resolve. Use of undeclared type or module `io` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:57 pub struct WriterLogger<T: io::Writer + Send + 'static> {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:61:10: 61:20 error: failed to resolve. Use of undeclared type or module `io` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:61 impl <T: io::Writer + Send> WriterLogger<T> {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:76:29: 76:33 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:76     pub fn with_file(path: &Path) -> io::IoResult<WriterLogger<io::File>> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:76:29: 76:33 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:82:10: 82:20 error: failed to resolve. Use of undeclared type or module `io` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:82 impl <T: io::Writer + Send> api::Logger for WriterLogger<T> {
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:11:6: 11:35 error: trait `error::FromError` is not in scope [E0405]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:11 impl error::FromError<io::IoError> for Error {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:11:6: 11:35 help: no candidates by the name of `FromError` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:17:10: 17:48 error: trait `error::FromError` is not in scope [E0405]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:17 impl <T> error::FromError<sync::PoisonError<T>> for Error {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/errors.rs:17:10: 17:48 help: no candidates by the name of `FromError` found in your project; maybe you misspelled the name or forgot to import an external crate? 
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:53:46: 53:62 error: type parameters are not allowed on this type [E0109]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:53     pub fn into_logger(self) -> io::IoResult<api::BoxedLogger> {
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:53:33: 53:63 error: ambiguous associated type; specify the type using the syntax `<[type error] as Trait>::IoResult` [E0223]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:53     pub fn into_logger(self) -> io::IoResult<api::BoxedLogger> {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:73:46: 73:62 error: type parameters are not allowed on this type [E0109]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:73     pub fn into_logger(self) -> io::IoResult<api::BoxedLogger> {
^~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:73:33: 73:63 error: ambiguous associated type; specify the type using the syntax `<[type error] as Trait>::IoResult` [E0223]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/config.rs:73     pub fn into_logger(self) -> io::IoResult<api::BoxedLogger> {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:19:37: 19:56 error: type parameters are not allowed on this type [E0109]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:19                     -> io::IoResult<ConfigurationLogger> {
^~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:19:24: 19:57 error: ambiguous associated type; specify the type using the syntax `<[type error] as Trait>::IoResult` [E0223]
.cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/loggers.rs:19                     -> io::IoResult<ConfigurationLogger> {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: cannot continue compilation due to previous error 
thread 'main' panicked at 'ChainedError {
error: failed to compile `fern v0.1.12`, intermediate artifacts can be found at `/home/cratesfyi/fern-0.1.12`,
cause: ChainedError {
error: Could not document `fern`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/fern-0.1.12/src/lib.rs --crate-name fern -o /home/cratesfyi/fern-0.1.12/doc -L dependency=/home/cratesfyi/fern-0.1.12/debug -L dependency=/home/cratesfyi/fern-0.1.12/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.