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 530e102a5 Bump serde from 1.0.175 to 1.0.179 in /lang/rust (#2408)
530e102a5 is described below
commit 530e102a5b58ef2143078faadfd196b7a1be1d14
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 31 12:17:25 2023 +0300
Bump serde from 1.0.175 to 1.0.179 in /lang/rust (#2408)
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.175 to 1.0.179.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.175...v1.0.179)
---
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 70c08623be625b06fff8df854d9a590ca1236b5d)
---
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 a8c1c9e44..d46d5615b 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -951,18 +951,18 @@ checksum =
"ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
[[package]]
name = "serde"
-version = "1.0.175"
+version = "1.0.179"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b"
+checksum = "0a5bf42b8d227d4abf38a1ddb08602e229108a517cd4e5bb28f9c7eaafdce5c0"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.175"
+version = "1.0.179"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4"
+checksum = "741e124f5485c7e60c03b043f79f320bff3527f4bbf12cf3831750dc46a0ec2c"
dependencies = [
"proc-macro2",
"quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 163455ad9..676d291bb 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -64,7 +64,7 @@ libflate = { default-features = false, version = "2.0.0",
features = ["std"] }
log = { default-features = false, version = "0.4.19" }
num-bigint = { default-features = false, version = "0.4.3" }
regex = { default-features = false, version = "1.9.1", features = ["std",
"perf"] }
-serde = { default-features = false, version = "1.0.175", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.179", features = ["derive"]
}
serde_json = { default-features = false, version = "1.0.104", features =
["std"] }
snap = { default-features = false, version = "1.1.0", optional = true }
strum = { default-features = false, version = "0.25.0" }
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index 144cc55c8..ee7e68e40 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -42,4 +42,4 @@ syn = { default-features = false, version = "2.0.27",
features = ["full", "fold"
[dev-dependencies]
apache-avro = { default-features = false, path = "../avro", features =
["derive"] }
proptest = { default-features = false, version = "1.2.0", features = ["std"] }
-serde = { default-features = false, version = "1.0.175", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.179", features = ["derive"]
}
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index ea2f3560a..0a8ead833 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.175", features = ["derive"]
}
+serde = { default-features = false, version = "1.0.179", features = ["derive"]
}
wasm-bindgen = "0.2.87"
[dev-dependencies]