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 4c119c6 chore(deps): Bump serde_json from 1.0.143 to 1.0.145 (#286)
4c119c6 is described below
commit 4c119c6db98e3fd467d46d7212f5c1c2f6a12a99
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 15 09:29:50 2025 +0200
chore(deps): Bump serde_json from 1.0.143 to 1.0.145 (#286)
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.143 to
1.0.145.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.143...v1.0.145)
---
updated-dependencies:
- dependency-name: serde_json
dependency-version: 1.0.145
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 | 5 +++--
Cargo.toml | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index caf864f..71a96d3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1167,14 +1167,15 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.143"
+version = "1.0.145"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
+checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
dependencies = [
"itoa",
"memchr",
"ryu",
"serde",
+ "serde_core",
]
[[package]]
diff --git a/Cargo.toml b/Cargo.toml
index 8c023f9..382a8b9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@ documentation = "https://docs.rs/apache-avro"
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.18", features =
["std"] }
-serde_json = { default-features = false, version = "1.0.143", features =
["std"] }
+serde_json = { default-features = false, version = "1.0.145", features =
["std"] }
pretty_assertions = { default-features = false, version = "1.4.1", features =
["std"] }
[profile.release.package.hello-wasm]