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 e03eebd9b Bump serde from 1.0.158 to 1.0.159 in /lang/rust (#2171)
e03eebd9b is described below
commit e03eebd9bf604c8cd33591ea1b941a7a929a561a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Mar 31 15:22:59 2023 +0300
Bump serde from 1.0.158 to 1.0.159 in /lang/rust (#2171)
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.158 to 1.0.159.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.158...v1.0.159)
---
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 68a20b7ac12de210cfcc17eaa65f72cab08a4981)
---
lang/rust/Cargo.lock | 8 ++++----
lang/rust/avro/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 47a877ae4..8a9edbf23 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -863,18 +863,18 @@ checksum =
"ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
[[package]]
name = "serde"
-version = "1.0.158"
+version = "1.0.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9"
+checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.158"
+version = "1.0.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad"
+checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
dependencies = [
"proc-macro2",
"quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 240994d0f..36ba9f2a4 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -64,7 +64,7 @@ libflate = { default-features = false, version = "1.2.0" }
log = { default-features = false, version = "0.4.17" }
num-bigint = { default-features = false, version = "0.4.3" }
regex = { default-features = false, version = "1.7.3", features = ["std",
"perf"] }
-serde = { default-features = false, version = "1.0.158", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.159", features = ["derive"]
}
serde_json = { default-features = false, version = "1.0.95", features =
["std"] }
snap = { default-features = false, version = "1.1.0", optional = true }
strum = { default-features = false, version = "0.24.1" }
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index 09d35c15c..43ea01553 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -42,4 +42,4 @@ syn = { default-features = false, version = "1.0.109",
features = ["full", "fold
[dev-dependencies]
apache-avro = { default-features = false, path = "../avro", features =
["derive"] }
proptest = { default-features = false, version = "1.1.0", features = ["std"] }
-serde = { default-features = false, version = "1.0.158", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.159", features = ["derive"]
}
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index 21188c5aa..c6ebdbbbc 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.158", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.159", features = ["derive"]
}
wasm-bindgen = "0.2.84"
[dev-dependencies]