From 3ee69e3506076e23ed85e10ba28be7a8e133d390 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Apr 2023 00:04:27 +0000 Subject: [PATCH] deps: bump multihash from 0.17.0 to 0.18.1 Bumps [multihash](https://github.com/multiformats/rust-multihash) from 0.17.0 to 0.18.1. - [Release notes](https://github.com/multiformats/rust-multihash/releases) - [Changelog](https://github.com/multiformats/rust-multihash/blob/v0.18.1/CHANGELOG.md) - [Commits](https://github.com/multiformats/rust-multihash/compare/v0.17.0...v0.18.1) --- updated-dependencies: - dependency-name: multihash dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++++--- core/Cargo.toml | 4 ++-- transports/webrtc/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 014cc268b0b..7797740850b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2238,7 +2238,7 @@ dependencies = [ "libsecp256k1", "log", "multiaddr", - "multihash", + "multihash 0.18.1", "multistream-select", "once_cell", "p256", @@ -2825,7 +2825,7 @@ dependencies = [ "libp2p-ping", "libp2p-swarm", "log", - "multihash", + "multihash 0.18.1", "prost", "prost-build", "prost-codec", @@ -3092,7 +3092,7 @@ dependencies = [ "byteorder", "data-encoding", "multibase", - "multihash", + "multihash 0.17.0", "percent-encoding", "serde", "static_assertions", @@ -3116,6 +3116,17 @@ name = "multihash" version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" +dependencies = [ + "core2", + "multihash-derive", + "unsigned-varint", +] + +[[package]] +name = "multihash" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfd8a792c1694c6da4f68db0a9d707c72bd260994da179e6030a5dcee00bb815" dependencies = [ "arbitrary", "core2", diff --git a/core/Cargo.toml b/core/Cargo.toml index edc9eafb7ed..f2dc2b8abe5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -22,7 +22,7 @@ instant = "0.1.11" libsecp256k1 = { version = "0.7.0", optional = true } log = "0.4" multiaddr = { version = "0.17.0" } -multihash = { version = "0.17.0", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } +multihash = { version = "0.18.1", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.12.1", path = "../misc/multistream-select" } p256 = { version = "0.11.1", default-features = false, features = ["ecdsa", "std"], optional = true } parking_lot = "0.12.0" @@ -49,7 +49,7 @@ base64 = "0.20.0" criterion = "0.4" libp2p-mplex = { path = "../muxers/mplex" } libp2p-noise = { path = "../transports/noise" } -multihash = { version = "0.17.0", default-features = false, features = ["arb"] } +multihash = { version = "0.18.1", default-features = false, features = ["arb"] } quickcheck = { package = "quickcheck-ext", path = "../misc/quickcheck-ext" } rmp-serde = "1.0" serde_json = "1.0" diff --git a/transports/webrtc/Cargo.toml b/transports/webrtc/Cargo.toml index 990d09101a7..91b8846b5ad 100644 --- a/transports/webrtc/Cargo.toml +++ b/transports/webrtc/Cargo.toml @@ -21,7 +21,7 @@ if-watch = "3.0" libp2p-core = { version = "0.39.0", path = "../../core" } libp2p-noise = { version = "0.42.0", path = "../../transports/noise" } log = "0.4" -multihash = { version = "0.17.0", default-features = false, features = ["sha2"] } +multihash = { version = "0.18.1", default-features = false, features = ["sha2"] } prost = "0.11" prost-codec = { version = "0.3.0", path = "../../misc/prost-codec" } rand = "0.8"