From c56579b71fb791624a4afc610cf4239ad2a739da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 08:47:29 +0300 Subject: [PATCH] build(deps): bump unsigned-varint from 0.7.2 to 0.8.0 (#120) Bumps [unsigned-varint](https://github.com/paritytech/unsigned-varint) from 0.7.2 to 0.8.0.
Changelog

Sourced from unsigned-varint's changelog.

0.8.0 - [2023-11-01]

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=unsigned-varint&package-manager=cargo&previous-version=0.7.2&new-version=0.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 31 ++++++++++++++++++++----------- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 207ef1ee..f621068f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,7 +544,7 @@ dependencies = [ "multibase", "multihash 0.18.1", "serde", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2074,7 +2074,7 @@ dependencies = [ "rw-stream-sink", "smallvec", "thiserror", - "unsigned-varint", + "unsigned-varint 0.7.2", "void", ] @@ -2156,7 +2156,7 @@ dependencies = [ "smallvec", "thiserror", "uint", - "unsigned-varint", + "unsigned-varint 0.7.2", "void", ] @@ -2210,7 +2210,7 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "smallvec", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2535,7 +2535,7 @@ dependencies = [ "tracing-subscriber 0.3.17", "trust-dns-resolver 0.23.2", "uint", - "unsigned-varint", + "unsigned-varint 0.8.0", "url", "webpki", "x25519-dalek 2.0.0", @@ -2766,7 +2766,7 @@ dependencies = [ "percent-encoding", "serde", "static_assertions", - "unsigned-varint", + "unsigned-varint 0.7.2", "url", ] @@ -2791,7 +2791,7 @@ dependencies = [ "digest 0.10.7", "multihash-derive", "sha2 0.10.8", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2808,7 +2808,7 @@ dependencies = [ "multihash-derive", "sha2 0.10.8", "sha3", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2842,7 +2842,7 @@ dependencies = [ "log", "pin-project", "smallvec", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -3601,7 +3601,7 @@ dependencies = [ "bytes", "quick-protobuf", "thiserror", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -4271,7 +4271,7 @@ dependencies = [ "sp-runtime", "substrate-prometheus-endpoint", "thiserror", - "unsigned-varint", + "unsigned-varint 0.7.2", "wasm-timer", "zeroize", ] @@ -5958,6 +5958,15 @@ dependencies = [ "bytes", "futures-io", "futures-util", +] + +[[package]] +name = "unsigned-varint" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" +dependencies = [ + "bytes", "tokio-util", ] diff --git a/Cargo.toml b/Cargo.toml index 07d411c2..b7001ff1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ tokio = { version = "1.26.0", features = ["rt", "net", "io-util", "time", "macro tracing = { version = "0.1.40", features = ["log"] } trust-dns-resolver = "0.23.2" uint = "0.9.5" -unsigned-varint = { version = "0.7.2", features = ["codec"] } +unsigned-varint = { version = "0.8.0", features = ["codec"] } url = "2.4.0" webpki = "0.22.4" x25519-dalek = "2.0.0"