Skip to content

Commit

Permalink
Bump dependencies (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored Aug 3, 2022
1 parent c26c4d8 commit 6fe2c39
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecies"
version = "0.2.2"
version = "0.2.3"
# docs
authors = ["Weiliang Li <[email protected]>"]
description = "Elliptic Curve Integrated Encryption Scheme for secp256k1 in Rust"
Expand All @@ -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
Expand Down

0 comments on commit 6fe2c39

Please sign in to comment.