From 9c432fdcf4b35fc802a0bef0bb5aa11652bd3c2f Mon Sep 17 00:00:00 2001 From: Weiliang Li Date: Wed, 9 Nov 2022 01:59:46 +0900 Subject: [PATCH] Bump dependencies (#93) --- Cargo.toml | 14 +++++++------- LICENSE | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 05eb27f..50686e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecies" -version = "0.2.3" +version = "0.2.4" # docs authors = ["Weiliang Li "] description = "Elliptic Curve Integrated Encryption Scheme for secp256k1 in Rust" @@ -25,14 +25,14 @@ libsecp256k1 = "0.7.1" sha2 = "0.10.2" # openssl aes -openssl = {version = "0.10.41", optional = true} +openssl = {version = "0.10.42", optional = true} # pure rust aes aes-gcm = {version = "0.10.1", optional = true} typenum = {version = "1.15.0", optional = true} [target.'cfg(target_arch = "wasm32")'.dependencies] -getrandom = {version = "0.2.7", features = ["js"]} +getrandom = {version = "0.2.8", features = ["js"]} rand = {version = "0.8.5", features = ["getrandom"]} [target.'cfg(not(target_arch = "wasm32"))'.dependencies] @@ -47,12 +47,12 @@ criterion = {version = "0.4.0", default-features = false} hex = "0.4.3" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = "0.3.32" +wasm-bindgen-test = "0.3.33" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -futures-util = "0.3.21" -reqwest = "0.11.11" -tokio = {version = "1.20.1", features = ["rt-multi-thread"]} +futures-util = "0.3.25" +reqwest = "0.11.12" +tokio = {version = "1.21.2", features = ["rt-multi-thread"]} [[bench]] harness = false diff --git a/LICENSE b/LICENSE index 03ac992..ef54f1e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2021 Weiliang Li +Copyright (c) 2019-2022 Weiliang Li Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 3114b68..a789fdd 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Found 1 outliers among 10 measurements (10.00%) ## Release Notes -### 0.2.1 ~ 0.2.3 +### 0.2.1 ~ 0.2.4 - Revamp error handling - Migrate to edition 2021 diff --git a/src/lib.rs b/src/lib.rs index ec99031..24615f2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -187,7 +187,7 @@ mod tests { use utils::tests::decode_hex; - const PYTHON_BACKEND: &str = "https://eciespy.herokuapp.com/"; + const PYTHON_BACKEND: &str = "https://ecies.deta.dev/"; let (sk, pk) = generate_keypair();