From 37d0706deda0c5b9f213949fe216e0ab9847d078 Mon Sep 17 00:00:00 2001 From: Jens W <8270201+DragonDev1906@users.noreply.github.com> Date: Thu, 30 Nov 2023 05:57:36 +0100 Subject: [PATCH] Bump version of ring dep + loosen dep requirements (#6) --- 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"