diff --git a/Cargo.lock b/Cargo.lock index 83beb018..cee9858d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1071,9 +1071,9 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "elliptic-curve" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c47abd0a791d2ac0c7aa1118715f85b83689e4522c4e3a244e159d4fc9848a8d" +checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ "base16ct", "crypto-bigint", diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index bf632905..d2f1a1de 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -17,7 +17,7 @@ arrayvec = { version = "0.7.2", default-features = false } rlp-derive = { version = "0.1.0", default-features = false } # crypto -elliptic-curve = { version = "0.12.2", default-features = false } +elliptic-curve = { version = "0.12.3", default-features = false } generic-array = { version = "0.14.6", default-features = false } k256 = { version = "0.11", default-features = false, features = ["keccak256", "ecdsa", "std"] } rand = { version = "0.8.5", default-features = false } diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 0aa1d563..68083e42 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -21,7 +21,7 @@ coins-bip39 = "0.7.0" coins-ledger = { version = "0.7.0", default-features = false, optional = true } hex = { version = "0.4.3", default-features = false, features = ["std"] } async-trait = { version = "0.1.50", default-features = false } -elliptic-curve = { version = "0.12.2", default-features = false } +elliptic-curve = { version = "0.12.3", default-features = false } sha2 = { version = "0.10.2", default-features = false } rand = { version = "0.8.5", default-features = false } yubihsm = { version = "0.41.0", features = ["secp256k1", "http", "usb"], optional = true }