From d5d8c4220c5a8f790f99300c1ec66585922a8725 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 17:34:05 +0000 Subject: [PATCH] chore(deps): bump bytes from 1.7.1 to 1.9.0 Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.7.1 to 1.9.0. - [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/v1.7.1...v1.9.0) --- updated-dependencies: - dependency-name: bytes dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- asport-client/Cargo.toml | 2 +- asport-quinn/Cargo.toml | 2 +- asport-server/Cargo.toml | 2 +- asport/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2c0c3a..82e6116 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,9 +228,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" [[package]] name = "cc" diff --git a/asport-client/Cargo.toml b/asport-client/Cargo.toml index d75c4d6..f9e0d1d 100644 --- a/asport-client/Cargo.toml +++ b/asport-client/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/AkinoKaede/asport" [dependencies] asport = { path = "../asport", version = "0.1.0" } asport-quinn = { path = "../asport-quinn", version = "0.1.1" } -bytes = { version = "1.7.1", default-features = false, features = ["std"] } +bytes = { version = "1.9.0", default-features = false, features = ["std"] } clap = { version = "4.5.16", default-features = false, features = ["color", "derive", "error-context", "help", "std", "suggestions", "usage"] } config = { version = "0.14.0", default-features = false, features = ["async", "convert-case", "json", "json5", "ron", "toml", "yaml"] } crossbeam-utils = { version = "0.8.20", default-features = false, features = ["std"] } diff --git a/asport-quinn/Cargo.toml b/asport-quinn/Cargo.toml index c64b0d4..6a1374c 100644 --- a/asport-quinn/Cargo.toml +++ b/asport-quinn/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/AkinoKaede/asport" [dependencies] asport = { path = "../asport", version = "0.1.0", features = ["async_marshal", "marshal", "model"] } -bytes = { version = "1.6.1", default-features = false, features = ["std"] } +bytes = { version = "1.9.0", default-features = false, features = ["std"] } futures-util = { version = "0.3.30", default-features = false, features = ["io", "std"] } quinn = { version = "0.11.4", default-features = false, features = ["futures-io"] } thiserror = { version = "1.0.62", default-features = false } diff --git a/asport-server/Cargo.toml b/asport-server/Cargo.toml index c19203c..1536251 100644 --- a/asport-server/Cargo.toml +++ b/asport-server/Cargo.toml @@ -14,7 +14,7 @@ repository = "https://github.com/AkinoKaede/asport" asport = { path = "../asport", version = "0.1.0" } asport-quinn = { path = "../asport-quinn", version = "0.1.1" } bimap = { version = "0.6.3", default-features = false, features = ["std"] } -bytes = { version = "1.7.1", default-features = false, features = ["std"] } +bytes = { version = "1.9.0", default-features = false, features = ["std"] } clap = { version = "4.5.16", default-features = false, features = ["color", "derive", "error-context", "help", "std", "suggestions", "usage"] } config = { version = "0.14.0", default-features = false, features = ["async", "convert-case", "json", "json5", "ron", "toml", "yaml"] } crossbeam-utils = { version = "0.8.20", default-features = false, features = ["std"] } diff --git a/asport/Cargo.toml b/asport/Cargo.toml index 18466db..3beb574 100644 --- a/asport/Cargo.toml +++ b/asport/Cargo.toml @@ -16,7 +16,7 @@ marshal = ["bytes"] model = ["parking_lot", "register-count"] [dependencies] -bytes = { version = "1.6.1", default-features = false, features = ["std"], optional = true } +bytes = { version = "1.9.0", default-features = false, features = ["std"], optional = true } futures-util = { version = "0.3.28", default-features = false, features = ["io", "std"], optional = true } parking_lot = { version = "0.12.1", default-features = false, optional = true } register-count = { version = "0.1.0", default-features = false, features = ["std"], optional = true }