From e3cd0a4e9a2e257461b1f9f7b339d64e80babe42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 21:26:58 +0000 Subject: [PATCH] build(deps): bump bytes from 1.8.0 to 1.11.1 Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.8.0 to 1.11.1. - [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.8.0...v1.11.1) --- updated-dependencies: - dependency-name: bytes dependency-version: 1.11.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- bindings/c/Cargo.toml | 2 +- libsql-replication/Cargo.toml | 2 +- libsql-server/Cargo.toml | 2 +- libsql-sys/Cargo.toml | 2 +- libsql/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf1b373f2e..c464ebfa24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -997,9 +997,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.8.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" dependencies = [ "serde", ] diff --git a/bindings/c/Cargo.toml b/bindings/c/Cargo.toml index 78f4be6689..cd760b59da 100644 --- a/bindings/c/Cargo.toml +++ b/bindings/c/Cargo.toml @@ -11,7 +11,7 @@ doc = false cbindgen = "0.24.0" [dependencies] -bytes = "1.5.0" +bytes = "1.11.1" lazy_static = "1.4.0" tokio = { version = "1.29.1", features = [ "rt-multi-thread" ] } hyper-rustls = { version = "0.25", features = ["webpki-roots"]} diff --git a/libsql-replication/Cargo.toml b/libsql-replication/Cargo.toml index e41c57cac5..713e812c78 100644 --- a/libsql-replication/Cargo.toml +++ b/libsql-replication/Cargo.toml @@ -13,7 +13,7 @@ prost = "0.12" libsql-sys = { workspace = true, default-features = false, features = ["wal", "rusqlite", "api"] } rusqlite = { workspace = true } parking_lot = "0.12.1" -bytes = { version = "1.5.0", features = ["serde"] } +bytes = { version = "1.11.1", features = ["serde"] } serde = { version = "1.0.189", features = ["derive"] } thiserror = "1.0.49" tracing = "0.1.40" diff --git a/libsql-server/Cargo.toml b/libsql-server/Cargo.toml index 82f8cb036c..21162eb65d 100644 --- a/libsql-server/Cargo.toml +++ b/libsql-server/Cargo.toml @@ -20,7 +20,7 @@ axum-extra = { version = "0.7", features = ["json-lines", "query"] } base64 = "0.21.0" bincode = "1.3.3" bottomless = { version = "0", path = "../bottomless", features = ["libsql_linked_statically"] } -bytes = { version = "1.2.1", features = ["serde"] } +bytes = { version = "1.11.1", features = ["serde"] } bytesize = { version = "1.2.0", features = ["serde"] } chrono = { version = "0.4.26", features = ["serde"] } clap = { version = "4.0.23", features = [ "derive", "env", "string" ] } diff --git a/libsql-sys/Cargo.toml b/libsql-sys/Cargo.toml index 24d2e1465b..4a785dffec 100644 --- a/libsql-sys/Cargo.toml +++ b/libsql-sys/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["libsql", "sqlite", "ffi", "bindings", "database"] categories = ["external-ffi-bindings"] [dependencies] -bytes = "1.5.0" +bytes = "1.11.1" libsql-ffi = { workspace = true } once_cell = "1.18.0" rusqlite = { workspace = true, features = ["trace"], optional = true } diff --git a/libsql/Cargo.toml b/libsql/Cargo.toml index 2fce342a48..2822d7ecd1 100644 --- a/libsql/Cargo.toml +++ b/libsql/Cargo.toml @@ -29,7 +29,7 @@ worker = { version = "0.4.1", optional = true } bincode = { version = "1", optional = true } anyhow = { version = "1.0.71", optional = true } -bytes = { version = "1.4.0", features = ["serde"], optional = true } +bytes = { version = "1.11.1", features = ["serde"], optional = true } uuid = { version = "1.4.0", features = ["v4", "serde"], optional = true } tokio-stream = { version = "0.1.14", optional = true } tonic = { version = "0.11", optional = true}