diff --git a/Cargo.lock b/Cargo.lock index 80323912..bc190e13 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -986,9 +986,9 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "elliptic-curve" -version = "0.11.9" +version = "0.11.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a4641673db66b0492d99edd8fd1cf2e6eb4ab91de525d1d2d6cc99442ed15f5" +checksum = "23f80ad035a844638d4ce3d4a27ef4e00f2304e1a37f9f43c6a3c73622f39e79" dependencies = [ "base16ct", "crypto-bigint", diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index be15fd84..904600b5 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -17,7 +17,7 @@ rlp-derive = { version = "0.1.0", default-features = false } # crypto ecdsa = { version = "0.13.4", default-features = false, features = ["std"] } -elliptic-curve = { version = "0.11.9", default-features = false } +elliptic-curve = { version = "0.11.10", default-features = false } generic-array = { version = "0.14.5", default-features = false } k256 = { version = "0.10.2", default-features = false, features = ["keccak256", "ecdsa"] } rand = { version = "0.8.4", default-features = false } diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 4e37490c..d2487488 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -21,7 +21,7 @@ coins-bip39 = "0.6.0" coins-ledger = { version = "0.6.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.11.9", default-features = false } +elliptic-curve = { version = "0.11.10", default-features = false } sha2 = { version = "0.9.8", default-features = false } rand = { version = "0.8.4", default-features = false } yubihsm = { version = "0.40.0", features = ["secp256k1", "http", "usb"], optional = true }