Przeglądaj źródła

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 7 lat temu
rodzic
commit
98cb815183
1 zmienionych plików z 1 dodań i 1 usunięć
  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]