From 7aed0e81cfdcb750b2bc1f935cc634553036800e Mon Sep 17 00:00:00 2001 From: Parsa Ghadimi Date: Tue, 7 Sep 2021 19:42:38 +0430 Subject: [PATCH] Update num-bigint to v0.4.2 The compilation is broken on nightly, due to: https://github.com/rust-lang/rust/issues/88581 This commit upgrades the num-bigint package to v0.4.2 which resolves this issue: https://github.com/rust-num/num-bigint/pull/219 --- rust/candid/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/candid/Cargo.toml b/rust/candid/Cargo.toml index 9506424f..3e3a099b 100644 --- a/rust/candid/Cargo.toml +++ b/rust/candid/Cargo.toml @@ -28,7 +28,7 @@ lalrpop-util = "0.19.0" leb128 = "0.2.4" logos = "0.12" num_enum = "0.5.1" -num-bigint = "0.4.0" +num-bigint = "0.4.2" num-traits = "0.2.12" paste = "1.0.0" pretty = "0.10.0"