From 6fe2c39fcfd43d1274a0fd32bc422888f7db9ac8 Mon Sep 17 00:00:00 2001 From: Weiliang Li Date: Wed, 3 Aug 2022 11:50:00 +0900 Subject: [PATCH] Bump dependencies (#89) --- Cargo.toml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1525e5c..b60e595 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecies" -version = "0.2.2" +version = "0.2.3" # docs authors = ["Weiliang Li "] description = "Elliptic Curve Integrated Encryption Scheme for secp256k1 in Rust" @@ -20,39 +20,39 @@ homepage = "https://ecies.org/rs/" repository = "https://github.com/ecies/rs" [dependencies] -hkdf = "0.12.2" +hkdf = "0.12.3" libsecp256k1 = "0.7.0" -sha2 = "0.10.1" +sha2 = "0.10.2" # openssl aes -openssl = {version = "0.10.38", optional = true} +openssl = {version = "0.10.41", optional = true} # pure rust aes aes-gcm = {version = "0.10.1", optional = true} -typenum = {version = "1.14.0", optional = true} +typenum = {version = "1.15.0", optional = true} [target.'cfg(target_arch = "wasm32")'.dependencies] -getrandom = {version = "0.2.3", features = ["js"]} -rand = {version = "0.8.4", features = ["getrandom"]} +getrandom = {version = "0.2.7", features = ["js"]} +rand = {version = "0.8.5", features = ["getrandom"]} [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -rand = {version = "0.8.4"} +rand = {version = "0.8.5"} [features] default = ["openssl"] pure = ["aes-gcm", "typenum"] [dev-dependencies] -criterion = "0.3.5" +criterion = "0.3.6" hex = "0.4.3" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = "0.3.28" +wasm-bindgen-test = "0.3.30" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -futures-util = "0.3.17" -reqwest = "0.11.6" -tokio = {version = "1.14.0", features = ["rt-multi-thread"]} +futures-util = "0.3.21" +reqwest = "0.11.11" +tokio = {version = "1.20.1", features = ["rt-multi-thread"]} [[bench]] harness = false