From 863fe20a8622ee2ab54712646aa5140ea27164f9 Mon Sep 17 00:00:00 2001 From: Jens Date: Thu, 23 Nov 2023 20:46:48 +0100 Subject: [PATCH] Bump version of ring dep + loosen dep requirements --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4ba0db2..4c83a50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,13 +11,13 @@ keywords = ["ethereum"] categories = ["cryptography::cryptocurrencies"] [dependencies] -lazy_static = { version = "1.4.0", optional = true } -cpufeatures = { version = "0.2.5", optional = true } -ring = "0.16.20" -sha2 = "0.10.6" +lazy_static = { version = "1.1", optional = true } +cpufeatures = { version = "0.2", optional = true } +ring = "0.17" +sha2 = "0.10" [dev-dependencies] -rustc-hex = "2.1.0" +rustc-hex = "2" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] wasm-bindgen-test = "0.3.33"