From ba18980aaf078df376057334d5234ecdb2fb68f4 Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Fri, 29 Dec 2023 11:11:45 -0800 Subject: [PATCH] Depend on the puiblished commit of crypto-bigint --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a95d00e..dba54be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,14 +10,14 @@ categories = ["cryptography", "no-std"] rust-version = "1.73" [dependencies] -crypto-bigint = { version = "0.6.0-pre.6", default-features = false, features = ["rand_core"] } +crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint", default-features = false, features = ["rand_core"], rev = "553e72ec77485c1350b5282ce611d4cca4656ec2" } rand_core = { version = "0.6.4", default-features = false } openssl = { version = "0.10.39", optional = true, features = ["vendored"] } rug = { version = "1.18", default-features = false, features = ["integer"], optional = true } [dev-dependencies] # need `crypto-bigint` with `alloc` to test `BoxedUint` -crypto-bigint = { version = "0.6.0-pre.6", default-features = false, features = ["alloc"] } +crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint", default-features = false, features = ["alloc"], rev = "553e72ec77485c1350b5282ce611d4cca4656ec2" } rand_chacha = "0.3" criterion = { version = "0.4", features = ["html_reports"] } num-modular = { version = "0.5", features = ["num-bigint"] }