Skip to content

Commit

Permalink
Fix secp256k1 possible use after free audit vulnerability (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodoufu committed Mar 27, 2023
1 parent 8e929c2 commit eadfdd8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "web3"
version = "0.19.0"
version = "0.19.1"
description = "Ethereum JSON-RPC client."
homepage = "https://github.com/tomusdrw/rust-web3"
repository = "https://github.com/tomusdrw/rust-web3"
Expand All @@ -19,7 +19,7 @@ ethereum-types = "0.13.0"
futures = "0.3.5"
futures-timer = "3.0.2"
hex = "0.4"
idna = "0.2"
idna = "0.3"
jsonrpc-core = "18.0.0"
log = "0.4.6"
parking_lot = "0.12.0"
Expand All @@ -29,11 +29,11 @@ serde_json = "1.0.39"
tiny-keccak = { version = "2.0.1", features = ["keccak"] }
pin-project = "1.0"
# Optional deps
secp256k1 = { version = "0.21", features = ["recovery"], optional = true }
secp256k1 = { version = "0.27", features = ["recovery"], optional = true }
once_cell = { version = "1.8.0", optional = true }

## HTTP
base64 = { version = "0.13", optional = true }
base64 = { version = "0.21", optional = true }
bytes = { version = "1.0", optional = true }
reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] }
headers = { version = "0.3", optional = true }
Expand All @@ -58,7 +58,7 @@ wasm-bindgen-futures = { version = "0.4.18", optional = true }

[dev-dependencies]
# For examples
env_logger = "0.9"
env_logger = "0.10"
hex-literal = "0.3"
wasm-bindgen-test = "0.3.19"

Expand Down

0 comments on commit eadfdd8

Please sign in to comment.