From 28dccbe097bb0864e7c4da6802be795c3ab2f94e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jan 2022 17:25:16 +0000 Subject: [PATCH] Bump unsigned-varint from 0.6.0 to 0.7.0 Bumps [unsigned-varint](https://github.com/paritytech/unsigned-varint) from 0.6.0 to 0.7.0. - [Release notes](https://github.com/paritytech/unsigned-varint/releases) - [Changelog](https://github.com/paritytech/unsigned-varint/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/unsigned-varint/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: unsigned-varint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +------------- client/network/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e5192d2c8fe17..1aa84c780310a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8322,7 +8322,7 @@ dependencies = [ "substrate-test-runtime-client", "tempfile", "thiserror", - "unsigned-varint 0.6.0", + "unsigned-varint 0.7.0", "void", "zeroize", ] @@ -11177,18 +11177,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35" -[[package]] -name = "unsigned-varint" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2" -dependencies = [ - "asynchronous-codec 0.5.0", - "bytes 1.1.0", - "futures-io", - "futures-util", -] - [[package]] name = "unsigned-varint" version = "0.7.0" diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 2df700fae8a32..1c2415a6cb0c3 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -58,7 +58,7 @@ sp-runtime = { version = "4.0.0", path = "../../primitives/runtime" } sc-utils = { version = "4.0.0-dev", path = "../utils" } sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" } thiserror = "1" -unsigned-varint = { version = "0.6.0", features = [ +unsigned-varint = { version = "0.7.0", features = [ "futures", "asynchronous_codec", ] }