scirust 0.0.5

A scientific computing library
Build #52850 2017-06-03T00:17:56.158893+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 scirust v0.0.5
Fresh num-traits v0.1.37
Fresh rustc-serialize v0.3.24
Fresh libc v0.2.23
Fresh log v0.3.8
Fresh num-integer v0.1.34
Fresh num-complex v0.1.37
Fresh rand v0.3.15
Fresh num-iter v0.1.33
Fresh num-bigint v0.1.37
Fresh num-rational v0.1.36
Fresh num v0.1.37
Documenting scirust v0.0.5
Running `rustdoc --crate-name scirust .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern num=/home/cratesfyi/cratesfyi/debug/deps/libnum-4a2202e45a4195ff.rlib --extern-version num=num,0.1.37 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-76456d761c2cb637.rlib --extern-version rand=rand,0.3.15`
error[E0432]: unresolved import `std::rt::heap::allocate`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:12:21
|
12 | use std::rt::heap::{allocate, deallocate};
|                     ^^^^^^^^ Could not find `heap` in `rt`

error[E0432]: unresolved import `std::rt::heap::deallocate`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:12:31
|
12 | use std::rt::heap::{allocate, deallocate};
|                               ^^^^^^^^^^ Could not find `heap` in `rt`

error[E0432]: unresolved import `std::raw::Slice`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:14:5
|
14 | use std::raw::Slice;
|     ^^^^^^^^^^^^^^^ no `Slice` in `raw`

error[E0432]: unresolved import `std::rt::heap::allocate`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:9:5
|
9 | use std::rt::heap::allocate;
|     ^^^^^^^^^^^^^^^^^^^^^^^ Could not find `heap` in `rt`

error[E0432]: unresolved import `std::rt::heap::deallocate`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/util/memory.rs:4:21
|
4 | use std::rt::heap::{deallocate};
|                     ^^^^^^^^^^ Could not find `heap` in `rt`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/algebra/ops.rs:37:1
|
37 | / pub trait Division : Div
38 | | {
39 | | 
40 | | }
| |_^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::ops::Div`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:531:9
|
531 | impl<T> Introspection for Matrix<T> {
|         ^^^^^^^^^^^^^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:531:9
|
531 | impl<T> Introspection for Matrix<T> {
|         ^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:531:9
|
531 | impl<T> Introspection for Matrix<T> {
|         ^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::cmp::PartialEq` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:531:9
|
531 | impl<T> Introspection for Matrix<T> {
|         ^^^^^^^^^^^^^ can't compare `T` with `T`
|
= help: the trait `std::cmp::PartialEq` is not implemented for `T`
= help: consider adding a `where T: std::cmp::PartialEq` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:268:1
|
268 | / pub trait MinMaxAbs<T:Signed> : Shape<T> {
269 | | 
270 | |     // Returns the absolute minimum scalar value
271 | |     fn min_abs_scalar(&self) -> (T, usize, usize);
...   |
276 | | 
277 | | }
| |_^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:268:1
|
268 | / pub trait MinMaxAbs<T:Signed> : Shape<T> {
269 | | 
270 | |     // Returns the absolute minimum scalar value
271 | |     fn min_abs_scalar(&self) -> (T, usize, usize);
...   |
276 | | 
277 | | }
| |_^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:268:1
|
268 | / pub trait MinMaxAbs<T:Signed> : Shape<T> {
269 | | 
270 | |     // Returns the absolute minimum scalar value
271 | |     fn min_abs_scalar(&self) -> (T, usize, usize);
...   |
276 | | 
277 | | }
| |_^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:298:9
|
298 | impl<T> Introspection for TriangularMatrix<T> {
|         ^^^^^^^^^^^^^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:298:9
|
298 | impl<T> Introspection for TriangularMatrix<T> {
|         ^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:298:9
|
298 | impl<T> Introspection for TriangularMatrix<T> {
|         ^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::cmp::PartialEq` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:298:9
|
298 | impl<T> Introspection for TriangularMatrix<T> {
|         ^^^^^^^^^^^^^ can't compare `T` with `T`
|
= help: the trait `std::cmp::PartialEq` is not implemented for `T`
= help: consider adding a `where T: std::cmp::PartialEq` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:271:5
|
271 |     fn min_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:271:5
|
271 |     fn min_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:271:5
|
271 |     fn min_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:274:5
|
274 |     fn max_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:274:5
|
274 |     fn max_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/traits.rs:274:5
|
274 |     fn max_abs_scalar(&self) -> (T, usize, usize);
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::traits::Shape`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:159:5
|
159 |     fn copy_sub_vec_from_cols(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:161:5
|
161 |     fn copy_sub_vec_from_rows(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:163:5
|
163 |     fn copy_add_vec_to_cols(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:165:5
|
165 |     fn copy_add_vec_to_rows(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:167:5
|
167 |     fn copy_mul_vec_to_cols(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/update/traits.rs:169:5
|
169 |     fn copy_mul_vec_to_rows(&self, vec: &Matrix<T>)->SRResult<Self>;
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `Self`
= help: consider adding a `where Self: std::marker::Sized` bound
= note: required by `std::result::Result`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:533:5
|
533 | /     fn is_standard_matrix_type(&self) -> bool {
534 | |         true
535 | |     }
| |_____^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:533:5
|
533 | /     fn is_standard_matrix_type(&self) -> bool {
534 | |         true
535 | |     }
| |_____^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:533:5
|
533 | /     fn is_standard_matrix_type(&self) -> bool {
534 | |         true
535 | |     }
| |_____^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::cmp::PartialEq` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/matrix.rs:533:5
|
533 | /     fn is_standard_matrix_type(&self) -> bool {
534 | |         true
535 | |     }
| |_____^ can't compare `T` with `T`
|
= help: the trait `std::cmp::PartialEq` is not implemented for `T`
= help: consider adding a `where T: std::cmp::PartialEq` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::matrix::Matrix`

error[E0277]: the trait bound `T: std::fmt::Debug` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:300:5
|
300 | /     fn is_triangular_matrix_type(&self) -> bool {
301 | |         true
302 | |     }
| |_____^ `T` cannot be formatted using `:?`; if it is defined in your crate, add `#[derive(Debug)]` or manually implement it
|
= help: the trait `std::fmt::Debug` is not implemented for `T`
= help: consider adding a `where T: std::fmt::Debug` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::clone::Clone` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:300:5
|
300 | /     fn is_triangular_matrix_type(&self) -> bool {
301 | |         true
302 | |     }
| |_____^ the trait `std::clone::Clone` is not implemented for `T`
|
= help: consider adding a `where T: std::clone::Clone` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:300:5
|
300 | /     fn is_triangular_matrix_type(&self) -> bool {
301 | |         true
302 | |     }
| |_____^ the trait `std::marker::Copy` is not implemented for `T`
|
= help: consider adding a `where T: std::marker::Copy` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error[E0277]: the trait bound `T: std::cmp::PartialEq` is not satisfied
--> .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/matrix/triangular_matrix.rs:300:5
|
300 | /     fn is_triangular_matrix_type(&self) -> bool {
301 | |         true
302 | |     }
| |_____^ can't compare `T` with `T`
|
= help: the trait `std::cmp::PartialEq` is not implemented for `T`
= help: consider adding a `where T: std::cmp::PartialEq` bound
= note: required because of the requirements on the impl of `algebra::structure::magma::MagmaBase` for `T`
= note: required by `matrix::triangular_matrix::TriangularMatrix`

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `scirust`.,
cause: process didn't exit successfully: `rustdoc --crate-name scirust .cargo/registry/src/github.com-1ecc6299db9ec823/scirust-0.0.5/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern num=/home/cratesfyi/cratesfyi/debug/deps/libnum-4a2202e45a4195ff.rlib --extern-version num=num,0.1.37 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-76456d761c2cb637.rlib --extern-version rand=rand,0.3.15` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.