Big number library for sake of Octavo.
YOU SHOULD NOT USE THAT!!!
This is created solely for Octavo usage and should not be considered as general
purpose big numbers library. This use fixed size arrays of limbs and doesn't
even warn on overflows or underflows, it just drop them into /dev/null
.
There are some options:
num::BigInt
andnum::BigUint
- native Rust library that was extracted fromrust-deprecated
. Slow, but works on stable.ramp
- fast Rust library for big numbers. Part of it useasm!
so it needs Rust nightly.- GMP - Rust bindings to GNU Multi Precision library.
See LICENSE