From bfa5bf6ea3efd3b707e73c7e55270ce87ff81a4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 May 2021 05:42:26 +0000 Subject: [PATCH] build(deps): Update multihash requirement from 0.13 to 0.14 Updates the requirements on [multihash](https://github.com/multiformats/rust-multihash) to permit the latest version. - [Release notes](https://github.com/multiformats/rust-multihash/releases) - [Commits](https://github.com/multiformats/rust-multihash/compare/v0.13.0...v0.14.0) Signed-off-by: dependabot[bot] --- core/Cargo.toml | 4 ++-- misc/multiaddr/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 7500afdca2cf..decf11c2e499 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -21,7 +21,7 @@ lazy_static = "1.2" libsecp256k1 = { version = "0.5.0", optional = true } log = "0.4" multiaddr = { package = "parity-multiaddr", version = "0.11.2", path = "../misc/multiaddr" } -multihash = { version = "0.13", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } +multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.10", path = "../misc/multistream-select" } parking_lot = "0.11.0" pin-project = "1.0.0" @@ -44,7 +44,7 @@ criterion = "0.3" libp2p-mplex = { path = "../muxers/mplex" } libp2p-noise = { path = "../transports/noise" } libp2p-tcp = { path = "../transports/tcp" } -multihash = { version = "0.13", default-features = false, features = ["arb"] } +multihash = { version = "0.14", default-features = false, features = ["arb"] } quickcheck = "0.9.0" wasm-timer = "0.2" diff --git a/misc/multiaddr/Cargo.toml b/misc/multiaddr/Cargo.toml index 12b7a75a1353..86b89d4b76ff 100644 --- a/misc/multiaddr/Cargo.toml +++ b/misc/multiaddr/Cargo.toml @@ -16,7 +16,7 @@ arrayref = "0.3" bs58 = "0.4.0" byteorder = "1.3.1" data-encoding = "2.1" -multihash = { version = "0.13", default-features = false, features = ["std", "multihash-impl", "identity"] } +multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity"] } percent-encoding = "2.1.0" serde = "1.0.70" static_assertions = "1.1"