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 f6ae7d3 chore(deps): Bump serde_json from 1.0.146 to 1.0.147 (#374)
f6ae7d3 is described below
commit f6ae7d3f3b5fd01548e7d680dec4fecb9f15a972
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 24 08:12:30 2025 +0100
chore(deps): Bump serde_json from 1.0.146 to 1.0.147 (#374)
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.146 to
1.0.147.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.146...v1.0.147)
---
updated-dependencies:
- dependency-name: serde_json
dependency-version: 1.0.147
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 | 18 +++++++++---------
Cargo.toml | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index b4d49fd..19468a0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -987,12 +987,6 @@ version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
-[[package]]
-name = "ryu"
-version = "1.0.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
-
[[package]]
name = "same-file"
version = "1.0.6"
@@ -1050,15 +1044,15 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.146"
+version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8"
+checksum = "6af14725505314343e673e9ecb7cd7e8a36aa9791eb936235a3567cc31447ae4"
dependencies = [
"itoa",
"memchr",
- "ryu",
"serde",
"serde_core",
+ "zmij",
]
[[package]]
@@ -1454,6 +1448,12 @@ dependencies = [
"syn",
]
+[[package]]
+name = "zmij"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e404bcd8afdaf006e529269d3e85a743f9480c3cef60034d77860d02964f3ba"
+
[[package]]
name = "zstd"
version = "0.13.3"
diff --git a/Cargo.toml b/Cargo.toml
index f0dbf6c..6d095bc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@ documentation = "https://docs.rs/apache-avro"
log = { default-features = false, version = "0.4.29" }
serde = { default-features = false, version = "1.0.228", features = ["std",
"derive"] }
serde_bytes = { default-features = false, version = "0.11.19", features =
["std"] }
-serde_json = { default-features = false, version = "1.0.146", features =
["std"] }
+serde_json = { default-features = false, version = "1.0.147", features =
["std"] }
pretty_assertions = { default-features = false, version = "1.4.1", features =
["std"] }
[profile.release.package.hello-wasm]