From c5b7ab66c61effff9c1255474848c73f9fe3703e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Jun 2021 16:21:17 +0300 Subject: [PATCH] chore(deps): bump elliptic-curve from 0.9.11 to 0.10.0 (#311) Bumps [elliptic-curve](https://github.com/RustCrypto/traits) from 0.9.11 to 0.10.0. - [Release notes](https://github.com/RustCrypto/traits/releases) - [Commits](https://github.com/RustCrypto/traits/compare/elliptic-curve-v0.9.11...elliptic-curve-v0.10.0) --- updated-dependencies: - dependency-name: elliptic-curve dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 19 +++++++++++++++---- ethers-core/Cargo.toml | 2 +- ethers-signers/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de493fd8..81583ac9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -519,6 +519,16 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +[[package]] +name = "crypto-bigint" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "281d926f72b42bf3ba840b88cd53e39f36be9f66e34c8df3fb336372b3753d41" +dependencies = [ + "generic-array 0.14.4", + "subtle 2.4.0", +] + [[package]] name = "crypto-mac" version = "0.7.0" @@ -668,10 +678,11 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.9.11" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee681bf25de1aad7cd02ccc7525d7b4bfab7be2493dbe3ee18d93f86eb3dcf3e" +checksum = "ade912ac38a947c8bff6d07bcf0ef97327027837963b0452e6f2a9e78b734ebf" dependencies = [ + "crypto-bigint", "generic-array 0.14.4", "rand_core 0.6.2", "subtle 2.4.0", @@ -825,7 +836,7 @@ dependencies = [ "bincode", "bytes", "ecdsa", - "elliptic-curve 0.9.11", + "elliptic-curve 0.10.0", "ethabi", "ethers", "funty", @@ -905,7 +916,7 @@ dependencies = [ "coins-bip32", "coins-bip39", "coins-ledger", - "elliptic-curve 0.9.11", + "elliptic-curve 0.10.0", "eth-keystore", "ethers", "ethers-core", diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 412c705e..e0511a93 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -16,7 +16,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.11", default-features = false } +elliptic-curve = { version = "0.10.0", default-features = false } generic-array = { version = "0.14.4", default-features = false } k256 = { version = "0.7.3", 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 2b21a337..96b7d735 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.1" } hex = { version = "0.4.3", default-features = false, features = ["std"] } async-trait = { version = "0.1.50", default-features = false } -elliptic-curve = { version = "0.9.11", default-features = false } +elliptic-curve = { version = "0.10.0", 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 }