clock_ticks 0.0.4

Contains precise_time_s() and precise_time_ns() without any C code
Build #26445 2016-08-19T13:06:47.472556+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 clock_ticks v0.0.4
Documenting clock_ticks v0.0.4
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs --crate-name clock_ticks -o /home/cratesfyi/clock_ticks-0.0.4/doc -L dependency=/home/cratesfyi/clock_ticks-0.0.4/debug -L dependency=/home/cratesfyi/clock_ticks-0.0.4/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:11:1: 11:19 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:11 extern crate libc;
^~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:11:1: 11:19 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15:16: 15:21 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15     use libc::{c_int, timespec};
^~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15:16: 15:21 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15:23: 15:31 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15     use libc::{c_int, timespec};
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:15:23: 15:31 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:38: 24:43 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24         pub fn clock_gettime(clk_id: c_int, tp: *mut timespec) -> c_int;
^~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:38: 24:43 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:54: 24:62 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24         pub fn clock_gettime(clk_id: c_int, tp: *mut timespec) -> c_int;
^~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:54: 24:62 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:67: 24:72 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24         pub fn clock_gettime(clk_id: c_int, tp: *mut timespec) -> c_int;
^~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:24:67: 24:72 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:39: 77:48 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77         let mut ts = libc::timespec { tv_sec: 0, tv_nsec: 0 };
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:39: 77:48 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:50: 77:60 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77         let mut ts = libc::timespec { tv_sec: 0, tv_nsec: 0 };
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:50: 77:60 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:22: 77:36 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77         let mut ts = libc::timespec { tv_sec: 0, tv_nsec: 0 };
^~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:77:22: 77:36 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:79:32: 79:53 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:79             imp::clock_gettime(libc::CLOCK_MONOTONIC, &mut ts);
^~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:79:32: 79:53 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81:20: 81:26 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81         return (ts.tv_sec as u64) * 1000000000 + (ts.tv_nsec as u64)
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81:20: 81:26 help: add #![feature(libc)] to the crate attributes to enable 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81:54: 81:61 error: use of unstable library feature 'libc': use `libc` from crates.io (see issue #27783) 
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81         return (ts.tv_sec as u64) * 1000000000 + (ts.tv_nsec as u64)
^~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs:81:54: 81:61 help: add #![feature(libc)] to the crate attributes to enable 
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `clock_ticks v0.0.4`, intermediate artifacts can be found at `/home/cratesfyi/clock_ticks-0.0.4`,
cause: ChainedError {
error: Could not document `clock_ticks`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/clock_ticks-0.0.4/src/lib.rs --crate-name clock_ticks -o /home/cratesfyi/clock_ticks-0.0.4/doc -L dependency=/home/cratesfyi/clock_ticks-0.0.4/debug -L dependency=/home/cratesfyi/clock_ticks-0.0.4/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.