This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 99625ba chore(deps): Bump serde_bytes from 0.11.17 to 0.11.18 (#288)
99625ba is described below
commit 99625ba884d7b11e764657f56501ef1be964be44
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 15 09:23:15 2025 +0200
chore(deps): Bump serde_bytes from 0.11.17 to 0.11.18 (#288)
Bumps [serde_bytes](https://github.com/serde-rs/bytes) from 0.11.17 to
0.11.18.
- [Release notes](https://github.com/serde-rs/bytes/releases)
- [Commits](https://github.com/serde-rs/bytes/compare/0.11.17...0.11.18)
---
updated-dependencies:
- dependency-name: serde_bytes
dependency-version: 0.11.18
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 23 +++++++++++++++++------
Cargo.toml | 2 +-
2 files changed, 18 insertions(+), 7 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index fe2c316..caf864f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1127,27 +1127,38 @@ checksum =
"56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
[[package]]
name = "serde"
-version = "1.0.219"
+version = "1.0.223"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
+checksum = "a505d71960adde88e293da5cb5eda57093379f64e61cf77bf0e6a63af07a7bac"
dependencies = [
+ "serde_core",
"serde_derive",
]
[[package]]
name = "serde_bytes"
-version = "0.11.17"
+version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
+checksum = "fe07b5d88710e3b807c16a06ccbc9dfecd5fff6a4d2745c59e3e26774f10de6a"
dependencies = [
"serde",
+ "serde_core",
+]
+
+[[package]]
+name = "serde_core"
+version = "1.0.223"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20f57cbd357666aa7b3ac84a90b4ea328f1d4ddb6772b430caa5d9e1309bb9e9"
+dependencies = [
+ "serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.219"
+version = "1.0.223"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
+checksum = "3d428d07faf17e306e699ec1e91996e5a165ba5d6bce5b5155173e91a8a01a56"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 4432723..8c023f9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -42,7 +42,7 @@ documentation = "https://docs.rs/apache-avro"
[workspace.dependencies]
log = { default-features = false, version = "0.4.28" }
serde = { default-features = false, version = "1.0.219", features = ["derive"]
}
-serde_bytes = { default-features = false, version = "0.11.17", features =
["std"] }
+serde_bytes = { default-features = false, version = "0.11.18", features =
["std"] }
serde_json = { default-features = false, version = "1.0.143", features =
["std"] }
pretty_assertions = { default-features = false, version = "1.4.1", features =
["std"] }