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/14 07:51:38 UTC

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

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 53e59c82c Bump serde from 1.0.154 to 1.0.155 in /lang/rust (#2144)
53e59c82c is described below

commit 53e59c82c7c2e25dd7183e027bb332959e4c7a88
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Mar 14 09:51:08 2023 +0200

    Bump serde from 1.0.154 to 1.0.155 in /lang/rust (#2144)
    
    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.154 to 1.0.155.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](https://github.com/serde-rs/serde/compare/v1.0.154...v1.0.155)
    
    ---
    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 81e665f7e3821f8d340a678d40bc8a8ff1d32dd8)
---
 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 054005b47..654d33a05 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -863,18 +863,18 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
 
 [[package]]
 name = "serde"
-version = "1.0.154"
+version = "1.0.155"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8cdd151213925e7f1ab45a9bbfb129316bd00799784b174b7cc7bcd16961c49e"
+checksum = "71f2b4817415c6d4210bfe1c7bfcf4801b2d904cb4d0e1a8fdb651013c9e86b8"
 dependencies = [
  "serde_derive",
 ]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.154"
+version = "1.0.155"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4fc80d722935453bcafdc2c9a73cd6fac4dc1938f0346035d84bf99fa9e33217"
+checksum = "d071a94a3fac4aff69d023a7f411e33f40f3483f8c5190b1953822b6b76d7630"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index d83bd45f0..5201ab89f 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.154", features = ["derive"] }
+serde = { default-features = false, version = "1.0.155", 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 20cbfeea4..146ed4fb6 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.154", features = ["derive"] }
+serde = { default-features = false, version = "1.0.155", features = ["derive"] }
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index bdf53911c..2bf161f01 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.154", features = ["derive"] }
+serde = { default-features = false, version = "1.0.155", features = ["derive"] }
 wasm-bindgen = "0.2.84"
 
 [dev-dependencies]