From 6f2649038589779c70f7ed768fa3491d4aab8d1c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 18 Feb 2021 11:27:22 +0200 Subject: [PATCH] chore(deps): bump elliptic-curve from 0.9.2 to 0.9.3 (#198) Bumps [elliptic-curve](https://github.com/RustCrypto/traits) from 0.9.2 to 0.9.3. - [Release notes](https://github.com/RustCrypto/traits/releases) - [Commits](https://github.com/RustCrypto/traits/compare/elliptic-curve-v0.9.2...elliptic-curve-v0.9.3) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- Cargo.lock | 9 +++++---- ethers-core/Cargo.toml | 2 +- ethers-signers/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 602fd8fa..9de0819d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -528,10 +528,11 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3f5ababd466cd3fc23b934ce7e1854a27bba9c172a47026f682cf801268a249" +checksum = "4df0e7de89c5c4e29c5c9a8576d1484603c16b8156765923e650cf99864ddc1f" dependencies = [ + "funty", "generic-array", "rand_core 0.6.1", "subtle", @@ -685,7 +686,7 @@ dependencies = [ "bincode", "bytes", "ecdsa", - "elliptic-curve 0.9.2", + "elliptic-curve 0.9.3", "ethabi-next", "ethereum-types", "ethers", @@ -759,7 +760,7 @@ version = "0.2.0" dependencies = [ "async-trait", "coins-ledger", - "elliptic-curve 0.9.2", + "elliptic-curve 0.9.3", "eth-keystore", "ethers", "ethers-core", diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 34b4a117..a7ec9516 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -18,7 +18,7 @@ arrayvec = { version = "0.5.1", default-features = false } # crypto ecdsa = { version = "0.10.2", default-features = false, features = ["std"] } -elliptic-curve = { version = "0.9.2", default-features = false } +elliptic-curve = { version = "0.9.3", default-features = false } generic-array = { version = "0.14.4", default-features = false } k256 = { version = "0.7.2", default-features = false, features = ["keccak256", "ecdsa"] } rand = { version = "0.7.1", default-features = false } diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index b912033a..b18aed70 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -22,7 +22,7 @@ coins-ledger = { version = "0.1.0", default-features = false, optional = true } eth-keystore = { version = "0.2.0" } hex = { version = "0.4.2", default-features = false, features = ["std"] } async-trait = { version = "0.1.40", default-features = false } -elliptic-curve = { version = "0.9.2", default-features = false } +elliptic-curve = { version = "0.9.3", default-features = false } sha2 = { version = "0.9.3", default-features = false } rand = { version = "0.7.3", default-features = false } yubihsm = { version = "0.38.0", features = ["secp256k1", "http", "usb"], optional = true }