This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new 13d2bd629 Bump serde from 1.0.198 to 1.0.199 in /lang/rust (#2882)
13d2bd629 is described below
commit 13d2bd629cce5dc7fd6c4f1291b73036793929ae
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Apr 29 20:43:02 2024 +0300
Bump serde from 1.0.198 to 1.0.199 in /lang/rust (#2882)
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.198 to 1.0.199.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.198...v1.0.199)
---
updated-dependencies:
- dependency-name: serde
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>
(cherry picked from commit 998b2aba733db6e70e57884e98cb81b4f28bd4a4)
---
lang/rust/Cargo.lock | 8 ++++----
lang/rust/Cargo.toml | 2 +-
lang/rust/avro_derive/Cargo.toml | 2 +-
lang/rust/wasm-demo/Cargo.toml | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index a145577fd..6da985d0f 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -1163,18 +1163,18 @@ checksum =
"92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
[[package]]
name = "serde"
-version = "1.0.198"
+version = "1.0.199"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
+checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.198"
+version = "1.0.199"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
+checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc"
dependencies = [
"proc-macro2",
"quote",
diff --git a/lang/rust/Cargo.toml b/lang/rust/Cargo.toml
index 593a88328..cf0f053d0 100644
--- a/lang/rust/Cargo.toml
+++ b/lang/rust/Cargo.toml
@@ -42,7 +42,7 @@ documentation = "https://docs.rs/apache-avro"
# dependencies used by more than one members
[workspace.dependencies]
log = { default-features = false, version = "0.4.21" }
-serde = { default-features = false, version = "1.0.198", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.199", features = ["derive"]
}
serde_json = { default-features = false, version = "1.0.116", features =
["std"] }
[profile.release.package.hello-wasm]
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index 3630a7340..ae667b0ff 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -42,7 +42,7 @@ syn = { default-features = false, version = "2.0.60",
features = ["full", "fold"
[dev-dependencies]
apache-avro = { default-features = false, path = "../avro", features =
["derive"] }
proptest = { default-features = false, version = "1.4.0", features = ["std"] }
-serde = { default-features = false, version = "1.0.198", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.199", features = ["derive"]
}
[package.metadata.docs.rs]
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index c56b4b5c5..c138f5073 100644
--- a/lang/rust/wasm-demo/Cargo.toml
+++ b/lang/rust/wasm-demo/Cargo.toml
@@ -36,7 +36,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
apache-avro = { path = "../avro" }
-serde = { default-features = false, version = "1.0.198", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.199", features = ["derive"]
}
wasm-bindgen = "0.2.92"
[dev-dependencies]