bigint: bump to 0.1.41

- Now uses Toom-3 multiplication for large inputs.
- `BigInt`/`BigUint` parsing now accepts `_` separating digits.
- `BigInt`/`BigUint::assign_from_slice` reinitializes the value, keeping
  the same internal buffer.
- `BigUint` now implements many `*Assign` ops.
- `BigUint::modpow(exp, mod)` performs efficient modular exponentiation.
This commit is contained in:
Josh Stone 2017-12-01 13:15:22 -08:00
parent 18b48f335e
commit 98cb815183
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ categories = [ "algorithms", "data-structures", "science" ]
license = "MIT/Apache-2.0"
name = "num-bigint"
repository = "https://github.com/rust-num/num"
version = "0.1.40"
version = "0.1.41"
[dependencies]