framp 0.3.7

Fork of James Miller's Ramp, a high-performance multiple-precision arithmetic library
Build #88852 2018-03-05T21:09:35.837700+00:00
# rustc version
rustc 1.26.0-dev (5c1d29af0 2018-03-03)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading framp v0.3.7
Fresh hamming v0.1.3
Fresh rustc-serialize v0.3.24
Fresh rustc-cfg v0.2.0
Fresh num-traits v0.2.1
Fresh gcc v0.3.54
Fresh ieee754 v0.2.2
Fresh libc v0.2.39
Fresh num-traits v0.1.43
Fresh num-integer v0.1.36
Fresh rand v0.4.2
Fresh rand v0.3.22
Fresh num-bigint v0.1.43
Compiling framp v0.3.7
Running `rustc --crate-name build_script_build .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/build.rs --crate-type bin --emit=dep-info,link -C debuginfo=2 -C metadata=d834ae7b62fa2895 -C extra-filename=-d834ae7b62fa2895 --out-dir /home/cratesfyi/cratesfyi/debug/build/framp-d834ae7b62fa2895 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern rustc_cfg=/home/cratesfyi/cratesfyi/debug/deps/librustc_cfg-03c0a116b6004705.rlib --extern-version rustc_cfg=rustc-cfg,0.2.0 --extern num_bigint=/home/cratesfyi/cratesfyi/debug/deps/libnum_bigint-057bf76e90afe6b6.rlib --extern-version num_bigint=num-bigint,0.1.43 --extern gcc=/home/cratesfyi/cratesfyi/debug/deps/libgcc-da7e919133cea6e4.rlib --extern-version gcc=gcc,0.3.54 --cap-lints allow`
Running `/home/cratesfyi/cratesfyi/debug/build/framp-d834ae7b62fa2895/build-script-build`
Documenting framp v0.3.7
Running `rustdoc --crate-name framp .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern num_integer=/home/cratesfyi/cratesfyi/debug/deps/libnum_integer-aa657ffb80ab09ab.rlib --extern-version num_integer=num-integer,0.1.36 --extern hamming=/home/cratesfyi/cratesfyi/debug/deps/libhamming-78e284d37b7235b4.rlib --extern-version hamming=hamming,0.1.3 --extern ieee754=/home/cratesfyi/cratesfyi/debug/deps/libieee754-d73764299ded6e5e.rlib --extern-version ieee754=ieee754,0.2.2 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-f68ac84df3818730.rlib --extern-version rand=rand,0.3.22 --extern num_traits=/home/cratesfyi/cratesfyi/debug/deps/libnum_traits-c9b5a898f8c0e62c.rlib --extern-version num_traits=num-traits,0.1.43`
error[E0407]: method `step` is not a member of trait `std::iter::Step`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:3688:5
|
3688 | /     fn step(&self, by: &Int) -> Option<Int> {
3689 | |         Some(self + by)
3690 | |     }
| |_____^ not a member of trait `std::iter::Step`

error[E0407]: method `steps_between_by_one` is not a member of trait `std::iter::Step`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:3707:5
|
3707 | /     fn steps_between_by_one(start: &Self, end: &Self) -> Option<usize> {
3708 | |         Self::steps_between(start, end, &Self::one())
3709 | |     }
| |_____^ not a member of trait `std::iter::Step`

error[E0407]: method `is_negative` is not a member of trait `std::iter::Step`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:3711:5
|
3711 | /     fn is_negative(&self) -> bool {
3712 | |         self.sign() < 0
3713 | |     }
| |_____^ not a member of trait `std::iter::Step`

error[E0658]: use of unstable library feature 'allocator_api': the precise API and guarantees it provides may be tweaked slightly, especially to possibly take into account the types being stored to make room for a future tracing garbage collector (see issue #32838)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/mem.rs:18:5
|
18 | use alloc::heap;
|     ^^^^^^^^^^^
|
= help: add #![feature(allocator_api)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'ptr_internals': use NonNull instead and consider PhantomData<T> (if you also use #[may_dangle]), Send, and/or Sync (see issue #0)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:32:5
|
32 | use std::ptr::Unique;
|     ^^^^^^^^^^^^^^^^
|
= help: add #![feature(ptr_internals)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'ptr_internals': use NonNull instead and consider PhantomData<T> (if you also use #[may_dangle]), Send, and/or Sync (see issue #0)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:126:10
|
126 |     ptr: Unique<Limb>,
|          ^^^^^^^^^^^^
|
= help: add #![feature(ptr_internals)] to the crate attributes to enable

error[E0050]: method `steps_between` has 3 parameters but the declaration in trait `std::iter::Step::steps_between` has 2
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:3692:50
|
3692 |     fn steps_between(start: &Int, end: &Int, by: &Int) -> Option<usize> {
|                                                  ^^^^ expected 2 parameters, found 3
|
= note: `steps_between` from trait: `fn(&Self, &Self) -> std::option::Option<usize>`

error[E0046]: not all trait items implemented, missing: `add_usize`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/int.rs:3687:1
|
3687 | impl std::iter::Step for Int {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `add_usize` in implementation
|
= note: `add_usize` from trait: `fn(&Self, usize) -> std::option::Option<Self>`

error: Compilation failed, aborting rustdoc

You've got a few errors: E0046, E0050, E0407, E0658
If you want more information on an error, try using "rustc --explain E0046"
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `framp`.,
cause: process didn't exit successfully: `rustdoc --crate-name framp .cargo/registry/src/github.com-1ecc6299db9ec823/framp-0.3.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern num_integer=/home/cratesfyi/cratesfyi/debug/deps/libnum_integer-aa657ffb80ab09ab.rlib --extern-version num_integer=num-integer,0.1.36 --extern hamming=/home/cratesfyi/cratesfyi/debug/deps/libhamming-78e284d37b7235b4.rlib --extern-version hamming=hamming,0.1.3 --extern ieee754=/home/cratesfyi/cratesfyi/debug/deps/libieee754-d73764299ded6e5e.rlib --extern-version ieee754=ieee754,0.2.2 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-f68ac84df3818730.rlib --extern-version rand=rand,0.3.22 --extern num_traits=/home/cratesfyi/cratesfyi/debug/deps/libnum_traits-c9b5a898f8c0e62c.rlib --extern-version num_traits=num-traits,0.1.43` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.