You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2023/03/15 08:40:06 UTC

[avro] branch branch-1.11 updated: Bump serde from 1.0.155 to 1.0.156 in /lang/rust (#2147)

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 7e1fc4b11 Bump serde from 1.0.155 to 1.0.156 in /lang/rust (#2147)
7e1fc4b11 is described below

commit 7e1fc4b115ef03bf21e5c647ae62d0cee678cacb
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Wed Mar 15 10:39:30 2023 +0200

    Bump serde from 1.0.155 to 1.0.156 in /lang/rust (#2147)
    
    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.155 to 1.0.156.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](https://github.com/serde-rs/serde/compare/v1.0.155...v1.0.156)
    
    ---
    updated-dependencies:
    - dependency-name: serde
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
    (cherry picked from commit d37d320353fd2b829792b7daf11fa853711409c7)
---
 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 e54789204..985a1f214 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -863,18 +863,18 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
 
 [[package]]
 name = "serde"
-version = "1.0.155"
+version = "1.0.156"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71f2b4817415c6d4210bfe1c7bfcf4801b2d904cb4d0e1a8fdb651013c9e86b8"
+checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4"
 dependencies = [
  "serde_derive",
 ]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.155"
+version = "1.0.156"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d071a94a3fac4aff69d023a7f411e33f40f3483f8c5190b1953822b6b76d7630"
+checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 5201ab89f..8074ca03e 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.1", features = ["std", "perf"] }
-serde = { default-features = false, version = "1.0.155", features = ["derive"] }
+serde = { default-features = false, version = "1.0.156", features = ["derive"] }
 serde_json = { default-features = false, version = "1.0.94", 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 efb03951f..6fcaa0d6c 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.155", features = ["derive"] }
+serde = { default-features = false, version = "1.0.156", features = ["derive"] }
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index 2bf161f01..5bb6e6056 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.155", features = ["derive"] }
+serde = { default-features = false, version = "1.0.156", features = ["derive"] }
 wasm-bindgen = "0.2.84"
 
 [dev-dependencies]