Explorar el Código

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.
Josh Stone hace 7 años
padre
commit
98cb815183
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      bigint/Cargo.toml

+ 1 - 1
bigint/Cargo.toml

@@ -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]