From 20a33a706343e0133b757ff31a2417bd7851055b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 16:58:34 +0000 Subject: [PATCH] build(deps): bump multiaddr from 0.17.1 to 0.18.1 Bumps [multiaddr](https://github.com/multiformats/rust-multiaddr) from 0.17.1 to 0.18.1. - [Release notes](https://github.com/multiformats/rust-multiaddr/releases) - [Changelog](https://github.com/multiformats/rust-multiaddr/blob/master/CHANGELOG.md) - [Commits](https://github.com/multiformats/rust-multiaddr/compare/v0.17.1...v0.18.1) --- updated-dependencies: - dependency-name: multiaddr dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 73 ++++++++++++++++++++++++++-- bitswap-discovery-probe/Cargo.toml | 2 +- bitswap-monitoring-client/Cargo.toml | 2 +- ipfs-gateway-finder/Cargo.toml | 2 +- 4 files changed, 71 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58961ca..3a77f61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,7 +301,7 @@ dependencies = [ "ipfs_monitoring_plugin_client", "lazy_static", "log", - "multiaddr", + "multiaddr 0.18.1", "prometheus", "prometheus_exporter", "serde", @@ -325,7 +325,7 @@ dependencies = [ "lazy_static", "log", "maxminddb", - "multiaddr", + "multiaddr 0.18.1", "prometheus", "prometheus_exporter", "serde", @@ -371,6 +371,15 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" +[[package]] +name = "bs58" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" +dependencies = [ + "tinyvec", +] + [[package]] name = "bumpalo" version = "3.11.1" @@ -1341,7 +1350,7 @@ dependencies = [ "dirs", "futures", "http", - "multiaddr", + "multiaddr 0.17.1", "multibase", "serde", "serde_json", @@ -1369,7 +1378,7 @@ dependencies = [ "ipfs-resolver-common", "ipfs_monitoring_plugin_client", "log", - "multiaddr", + "multiaddr 0.18.1", "multibase", "rand 0.8.5", "reqwest", @@ -1516,6 +1525,21 @@ version = "0.2.140" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" +[[package]] +name = "libp2p-identity" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93a7b3534b84fe89985d8076246806c845e716d0cdac50925dcf65caf49ab3c0" +dependencies = [ + "bs58 0.5.0", + "log", + "multihash 0.19.1", + "quick-protobuf", + "rand 0.8.5", + "sha2", + "thiserror", +] + [[package]] name = "link-cplusplus" version = "1.0.7" @@ -1664,6 +1688,25 @@ dependencies = [ "url", ] +[[package]] +name = "multiaddr" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070" +dependencies = [ + "arrayref", + "byteorder", + "data-encoding", + "libp2p-identity", + "multibase", + "multihash 0.19.1", + "percent-encoding", + "serde", + "static_assertions", + "unsigned-varint 0.7.1", + "url", +] + [[package]] name = "multibase" version = "0.9.1" @@ -1897,7 +1940,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58341485071825827b7f03cf7efd1cb21e6a709bea778fb50227fd45d2f361b4" dependencies = [ "arrayref", - "bs58", + "bs58 0.4.0", "byteorder", "data-encoding", "multihash 0.13.2", @@ -2100,6 +2143,15 @@ version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +[[package]] +name = "quick-protobuf" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f" +dependencies = [ + "byteorder", +] + [[package]] name = "quote" version = "1.0.33" @@ -2635,6 +2687,17 @@ dependencies = [ "digest", ] +[[package]] +name = "sha2" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + [[package]] name = "signal-hook-registry" version = "1.4.0" diff --git a/bitswap-discovery-probe/Cargo.toml b/bitswap-discovery-probe/Cargo.toml index a7b1bad..424a2db 100644 --- a/bitswap-discovery-probe/Cargo.toml +++ b/bitswap-discovery-probe/Cargo.toml @@ -23,5 +23,5 @@ clap = "2.33.3" cid = "0.11.0" waitgroup = "0.1.2" futures = "0.3.28" -multiaddr = "0.17.1" +multiaddr = "0.18.1" csv = "1.2.2" \ No newline at end of file diff --git a/bitswap-monitoring-client/Cargo.toml b/bitswap-monitoring-client/Cargo.toml index 17c48db..9e24dc7 100644 --- a/bitswap-monitoring-client/Cargo.toml +++ b/bitswap-monitoring-client/Cargo.toml @@ -25,7 +25,7 @@ clap = "2.33.3" maxminddb = "0.23.0" # Multiaddress parser. -multiaddr = "0.17" +multiaddr = "0.18" # ISO 3166-1 countries. celes = "2.4.0" diff --git a/ipfs-gateway-finder/Cargo.toml b/ipfs-gateway-finder/Cargo.toml index 37f53d7..a3e99ea 100644 --- a/ipfs-gateway-finder/Cargo.toml +++ b/ipfs-gateway-finder/Cargo.toml @@ -25,4 +25,4 @@ cid = "0.11.0" http = "0.2.9" csv = "1.2.2" clap = "2.33.3" -multiaddr = "0.17.1" \ No newline at end of file +multiaddr = "0.18.1" \ No newline at end of file