Build #54876 2017-06-04T06:34:04.262578+00:00
# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)
# docs.rs version
cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading containers v0.5.1
Downloading rel v0.2.0
Downloading heap v0.1.0
Compiling rel v0.2.0
Compiling heap v0.1.0
Running `rustc --crate-name rel .cargo/registry/src/github.com-1ecc6299db9ec823/rel-0.2.0/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=40ca75af868f7993 -C extra-filename=-40ca75af868f7993 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow`
Running `rustc --crate-name heap .cargo/registry/src/github.com-1ecc6299db9ec823/heap-0.1.0/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=3400bbd11a936cfd -C extra-filename=-3400bbd11a936cfd --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow`
Fresh typenum v1.9.0
Documenting containers v0.5.1
Running `rustdoc --crate-name containers .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern rel=/home/cratesfyi/cratesfyi/debug/deps/librel-40ca75af868f7993.rlib --extern-version rel=rel,0.2.0 --extern typenum=/home/cratesfyi/cratesfyi/debug/deps/libtypenum-0dd78c81e7084fc0.rlib --extern-version typenum=typenum,1.9.0 --extern heap=/home/cratesfyi/cratesfyi/debug/deps/libheap-3400bbd11a936cfd.rlib --extern-version heap=heap,0.1.0`
error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/boxed.rs:39:46
|
39 |     pub unsafe fn into_raw(self) -> *mut T { *self.0 }
|                                              ^^^^^^^

error[E0599]: no method named `get` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/boxed.rs:45:45
|
45 |     fn deref(&self) -> &T { unsafe { self.0.get() } }
|                                             ^^^

error[E0599]: no method named `get_mut` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/boxed.rs:49:57
|
49 |     fn deref_mut(&mut self) -> &mut T { unsafe { self.0.get_mut() } }
|                                                         ^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/boxed.rs:54:19
|
54 |         let ptr = *self.0;
|                   ^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:60:35
|
60 |         slice::from_raw_parts_mut(*self.ptr, self.cap)
|                                   ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:84:46
|
84 |             if self.len == 0 { dealloc_array(*self.ptr, self.cap) }
|                                              ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:86:38
|
86 |                 let ptr = reallocate(*self.ptr as *mut u8,
|                                      ^^^^^^^^^

error[E0599]: no method named `offset` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:112:32
|
112 |             let ptr = self.ptr.offset(k as isize);
|                                ^^^^^^

error[E0599]: no method named `offset` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:129:32
|
129 |             let ptr = self.ptr.offset(k as isize);
|                                ^^^^^^

error[E0308]: mismatched types
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:131:40
|
131 |             ptr::copy(&*ptr.offset(1), ptr, self.len - k - 1);
|                                        ^^^ types differ in mutability
|
= note: expected type `*mut _`
found type `*const _`

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:176:38
|
176 |             ptr::copy_nonoverlapping(*xs.ptr, self.ptr.offset(self.len as isize), xs.len);
|                                      ^^^^^^^

error[E0599]: no method named `offset` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:176:56
|
176 |             ptr::copy_nonoverlapping(*xs.ptr, self.ptr.offset(self.len as isize), xs.len);
|                                                        ^^^^^^

error[E0599]: no method named `offset` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:191:60
|
191 |             ptr::copy_nonoverlapping(xs.as_ptr(), self.ptr.offset(self.len as isize), xs.len());
|                                                            ^^^^^^

error[E0599]: no method named `offset` found for type `core::ptr::Unique<T>` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:213:47
|
213 |             ptr::copy_nonoverlapping(self.ptr.offset(k as isize), *xs.ptr, xs.len);
|                                               ^^^^^^

error: type `core::ptr::Unique<_>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:213:67
|
213 |             ptr::copy_nonoverlapping(self.ptr.offset(k as isize), *xs.ptr, xs.len);
|                                                                   ^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:268:44
|
268 |                 let ptr = alloc_or_realloc(*self.ptr, self.cap * mem::size_of::<T>(), size);
|                                            ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:284:31
|
284 |                 dealloc_array(*self.ptr, self.cap);
|                               ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:346:62
|
346 |     fn deref(&self) -> &[T] { unsafe { slice::from_raw_parts(*self.ptr, self.len) } }
|                                                              ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:351:78
|
351 |     fn deref_mut(&mut self) -> &mut [T] { unsafe { slice::from_raw_parts_mut(*self.ptr, self.len) } }
|                                                                              ^^^^^^^^^

error: type `core::ptr::Unique<T>` cannot be dereferenced
--> .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/collections/vec.rs:369:19
|
369 |         let ptr = *self.ptr;
|                   ^^^^^^^^^

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `containers`.,
cause: process didn't exit successfully: `rustdoc --crate-name containers .cargo/registry/src/github.com-1ecc6299db9ec823/containers-0.5.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern rel=/home/cratesfyi/cratesfyi/debug/deps/librel-40ca75af868f7993.rlib --extern-version rel=rel,0.2.0 --extern typenum=/home/cratesfyi/cratesfyi/debug/deps/libtypenum-0dd78c81e7084fc0.rlib --extern-version typenum=typenum,1.9.0 --extern heap=/home/cratesfyi/cratesfyi/debug/deps/libheap-3400bbd11a936cfd.rlib --extern-version heap=heap,0.1.0` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.