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] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2021-06-09 16:21:17 +03:00 committed by GitHub
parent 160918c49d
commit c5b7ab66c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 6 deletions

19
Cargo.lock generated
View File

@ -519,6 +519,16 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 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]] [[package]]
name = "crypto-mac" name = "crypto-mac"
version = "0.7.0" version = "0.7.0"
@ -668,10 +678,11 @@ dependencies = [
[[package]] [[package]]
name = "elliptic-curve" name = "elliptic-curve"
version = "0.9.11" version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee681bf25de1aad7cd02ccc7525d7b4bfab7be2493dbe3ee18d93f86eb3dcf3e" checksum = "ade912ac38a947c8bff6d07bcf0ef97327027837963b0452e6f2a9e78b734ebf"
dependencies = [ dependencies = [
"crypto-bigint",
"generic-array 0.14.4", "generic-array 0.14.4",
"rand_core 0.6.2", "rand_core 0.6.2",
"subtle 2.4.0", "subtle 2.4.0",
@ -825,7 +836,7 @@ dependencies = [
"bincode", "bincode",
"bytes", "bytes",
"ecdsa", "ecdsa",
"elliptic-curve 0.9.11", "elliptic-curve 0.10.0",
"ethabi", "ethabi",
"ethers", "ethers",
"funty", "funty",
@ -905,7 +916,7 @@ dependencies = [
"coins-bip32", "coins-bip32",
"coins-bip39", "coins-bip39",
"coins-ledger", "coins-ledger",
"elliptic-curve 0.9.11", "elliptic-curve 0.10.0",
"eth-keystore", "eth-keystore",
"ethers", "ethers",
"ethers-core", "ethers-core",

View File

@ -16,7 +16,7 @@ arrayvec = { version = "0.5.1", default-features = false }
# crypto # crypto
ecdsa = { version = "0.10.2", default-features = false, features = ["std"] } 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 } generic-array = { version = "0.14.4", default-features = false }
k256 = { version = "0.7.3", default-features = false, features = ["keccak256", "ecdsa"] } k256 = { version = "0.7.3", default-features = false, features = ["keccak256", "ecdsa"] }
rand = { version = "0.7.1", default-features = false } rand = { version = "0.7.1", default-features = false }

View File

@ -22,7 +22,7 @@ coins-ledger = { version = "0.1.0", default-features = false, optional = true }
eth-keystore = { version = "0.2.1" } eth-keystore = { version = "0.2.1" }
hex = { version = "0.4.3", default-features = false, features = ["std"] } hex = { version = "0.4.3", default-features = false, features = ["std"] }
async-trait = { version = "0.1.50", default-features = false } 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 } sha2 = { version = "0.9.3", default-features = false }
rand = { version = "0.7.3", default-features = false } rand = { version = "0.7.3", default-features = false }
yubihsm = { version = "0.38.0", features = ["secp256k1", "http", "usb"], optional = true } yubihsm = { version = "0.38.0", features = ["secp256k1", "http", "usb"], optional = true }