From df157d1fa4521cb8b1bd2743d27631127fd7a24e Mon Sep 17 00:00:00 2001 From: willrnch <1873880+willrnch@users.noreply.github.com> Date: Tue, 28 Oct 2025 11:00:15 +0100 Subject: [PATCH] update dependencies --- Cargo.toml | 6 +++--- src/lib.rs | 7 ------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f71855d..7c1828b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,8 +12,8 @@ keywords = ["cryptography"] # Up to five categories = ["cryptography"] # https://crates.io/category_slugs [dependencies] -bc-rand = "^0.4.1" -bc-crypto = "^0.11.0" +bc-rand = { git = "https://github.com/willrnch/bc-rand-rust.git", rev = "4013ca45388a9bc1c8ca822ba09b551886857e31" } +bc-crypto = { git = "https://github.com/willrnch/bc-crypto-rust.git", rev = "12b09dd6987a02586d4ce2654559aa35174600b5" } thiserror = "^2.0" @@ -21,4 +21,4 @@ thiserror = "^2.0" hex-literal = "^0.4.1" hex = "^0.4.3" version-sync = "^0.9.0" -rand = "^0.8.5" +rand = "^0.9.2" diff --git a/src/lib.rs b/src/lib.rs index f8e32e2..940655a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -103,13 +103,6 @@ mod tests { fn fill_bytes(&mut self, _dest: &mut [u8]) { unimplemented!() } - - fn try_fill_bytes( - &mut self, - _dest: &mut [u8], - ) -> std::result::Result<(), rand::Error> { - unimplemented!() - } } // Testing purposes only!