From 9b704a02c0df9cdbb0cc37a316f373de94b0c717 Mon Sep 17 00:00:00 2001 From: Brooks Prumo Date: Sat, 4 Sep 2021 11:45:53 -0500 Subject: [PATCH] Update num-bigint to 0.3.3 `cargo check` on nightly was erroring due to num-bigint: ```text error[E0658]: use of unstable library feature 'int_roundings' --> [...]/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.3.1/src/biguint.rs:208:10 | 208 | .div_ceil(&big_digit::BITS.into()) | ^^^^^^^^ | = note: see issue #88581 for more information = help: add `#![feature(int_roundings)]` to the crate attributes to enable ``` --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a250ffa28a208..9e9b2b06b90f7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2605,9 +2605,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e9a41747ae4633fce5adffb4d2e81ffc5e89593cb19917f8fb2cc5ff76507bf" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" dependencies = [ "autocfg 1.0.0", "num-integer",