Build #9713 2016-08-06T21:57:37.476550+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 num v0.1.24
Compiling rustc-serialize v0.3.19
Running `rustc .cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.19/src/lib.rs --crate-name rustc_serialize --crate-type lib -g -C metadata=3561541d79c18212 -C extra-filename=-3561541d79c18212 --out-dir /home/cratesfyi/num-0.1.24/debug/deps --emit=dep-info,link -L dependency=/home/cratesfyi/num-0.1.24/debug/deps -L dependency=/home/cratesfyi/num-0.1.24/debug/deps --cap-lints allow`
Compiling libc v0.2.15
Running `rustc .cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.15/src/lib.rs --crate-name libc --crate-type lib -g --cfg feature=\"default\" --cfg feature=\"use_std\" -C metadata=1bd8847afb79f283 -C extra-filename=-1bd8847afb79f283 --out-dir /home/cratesfyi/num-0.1.24/debug/deps --emit=dep-info,link -L dependency=/home/cratesfyi/num-0.1.24/debug/deps -L dependency=/home/cratesfyi/num-0.1.24/debug/deps --cap-lints allow`
Compiling rand v0.3.14
Running `rustc .cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.14/src/lib.rs --crate-name rand --crate-type lib -g -C metadata=49a08859d086fffe -C extra-filename=-49a08859d086fffe --out-dir /home/cratesfyi/num-0.1.24/debug/deps --emit=dep-info,link -L dependency=/home/cratesfyi/num-0.1.24/debug/deps -L dependency=/home/cratesfyi/num-0.1.24/debug/deps --extern libc=/home/cratesfyi/num-0.1.24/debug/deps/liblibc-1bd8847afb79f283.rlib --cap-lints allow`
Documenting num v0.1.24
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/lib.rs --crate-name num -o /home/cratesfyi/num-0.1.24/doc -L dependency=/home/cratesfyi/num-0.1.24/debug -L dependency=/home/cratesfyi/num-0.1.24/debug/deps --extern rand=/home/cratesfyi/num-0.1.24/debug/deps/librand-49a08859d086fffe.rlib --extern rustc_serialize=/home/cratesfyi/num-0.1.24/debug/deps/librustc_serialize-3561541d79c18212.rlib`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:22:1: 31:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:22 pub trait Num: PartialEq + Zero + One
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:22:1: 31:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:22:1: 31:2 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:30:5: 30:85 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:30 fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:30:5: 30:85 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:30:5: 30:85 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:215:1: 236:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:215 pub trait Zero: Add<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:215:1: 236:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:215:1: 236:2 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:231:5: 231:23 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:231 fn zero() -> Self;
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:231:5: 231:23 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:231:5: 231:23 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:235:5: 235:31 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:235 fn is_zero(&self) -> bool;
^~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:235:5: 235:31 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:235:5: 235:31 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:265:1: 282:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:265 pub trait One: Mul<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:265:1: 282:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:265:1: 282:2 note: required by `std::ops::Mul`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:281:5: 281:22 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:281 fn one() -> Self;
^~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:281:5: 281:22 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:281:5: 281:22 note: required by `std::ops::Mul`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:309:1: 343:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:309 pub trait Signed: Num + Neg<Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:309:1: 343:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:309:1: 343:2 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:315:5: 315:27 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:315 fn abs(&self) -> Self;
^~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:315:5: 315:27 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:315:5: 315:27 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:321:5: 321:45 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:321 fn abs_sub(&self, other: &Self) -> Self;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:321:5: 321:45 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:321:5: 321:45 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:336:5: 336:30 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:336 fn signum(&self) -> Self;
^~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:336:5: 336:30 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:336:5: 336:30 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:339:5: 339:35 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:339 fn is_positive(&self) -> bool;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:339:5: 339:35 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:339:5: 339:35 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:342:5: 342:35 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:342 fn is_negative(&self) -> bool;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:342:5: 342:35 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:342:5: 342:35 note: required by `std::ops::Neg`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:505:1: 509:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:505 pub trait CheckedAdd: Add<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:505:1: 509:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:505:1: 509:2 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:508:5: 508:53 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:508 fn checked_add(&self, v: &Self) -> Option<Self>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:508:5: 508:53 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:508:5: 508:53 note: required by `std::ops::Add`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:535:1: 539:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:535 pub trait CheckedSub: Sub<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:535:1: 539:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:535:1: 539:2 note: required by `std::ops::Sub`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:538:5: 538:53 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:538 fn checked_sub(&self, v: &Self) -> Option<Self>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:538:5: 538:53 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:538:5: 538:53 note: required by `std::ops::Sub`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:555:1: 559:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:555 pub trait CheckedMul: Mul<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:555:1: 559:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:555:1: 559:2 note: required by `std::ops::Mul`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:558:5: 558:53 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:558 fn checked_mul(&self, v: &Self) -> Option<Self>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:558:5: 558:53 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:558:5: 558:53 note: required by `std::ops::Mul`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:575:1: 579:2 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:575 pub trait CheckedDiv: Div<Self, Output = Self> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:575:1: 579:2 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:575:1: 579:2 note: required by `std::ops::Div`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:578:5: 578:53 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:578 fn checked_div(&self, v: &Self) -> Option<Self>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:578:5: 578:53 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:578:5: 578:53 note: required by `std::ops::Div`
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:1279:5: 1279:51 error: the trait bound `Self: std::marker::Sized` is not satisfied [E0277]
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:1279 fn from<T: ToPrimitive>(n: T) -> Option<Self>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:1279:5: 1279:51 help: consider adding a `where Self: std::marker::Sized` bound
.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/traits.rs:1279:5: 1279:51 note: required by `std::option::Option`
error: Compilation failed, aborting rustdoc
thread 'main' panicked at 'ChainedError {
error: failed to compile `num v0.1.24`, intermediate artifacts can be found at `/home/cratesfyi/num-0.1.24`,
cause: ChainedError {
error: Could not document `num`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/num-0.1.24/src/lib.rs --crate-name num -o /home/cratesfyi/num-0.1.24/doc -L dependency=/home/cratesfyi/num-0.1.24/debug -L dependency=/home/cratesfyi/num-0.1.24/debug/deps --extern rand=/home/cratesfyi/num-0.1.24/debug/deps/librand-49a08859d086fffe.rlib --extern rustc_serialize=/home/cratesfyi/num-0.1.24/debug/deps/librustc_serialize-3561541d79c18212.rlib` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.