From 4668d9f15e5ed2cc0b2b43f15f47591095f6b11b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Jan 2023 20:06:44 +0000 Subject: [PATCH] Update bytes requirement from 0.4 to 1.4 Updates the requirements on [bytes](https://github.com/tokio-rs/bytes) to permit the latest version. - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/bytes/compare/v0.4.10...v1.4.0) --- updated-dependencies: - dependency-name: bytes dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- network-core/Cargo.toml | 2 +- protocol-tokio/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/network-core/Cargo.toml b/network-core/Cargo.toml index 18b3b86b7..01e82f589 100644 --- a/network-core/Cargo.toml +++ b/network-core/Cargo.toml @@ -13,5 +13,5 @@ edition = "2018" [dependencies] chain-core = { path = "../chain-core" } -bytes = "0.4" +bytes = "1.4" futures = "0.1" diff --git a/protocol-tokio/Cargo.toml b/protocol-tokio/Cargo.toml index 4b5088210..3f6b49c1b 100644 --- a/protocol-tokio/Cargo.toml +++ b/protocol-tokio/Cargo.toml @@ -17,7 +17,7 @@ cbor_event = "^2.1.1" futures = "^0.1.25" tokio-io = "^0.1.9" tokio-codec = "^0.1.1" -bytes = "^0.4.10" +bytes = "^1.4.0" log = "^0.4.5" chain-core = { path = "../chain-core" }