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 2022/08/04 07:20:16 UTC

[avro] branch branch-1.11 updated: Bump serde from 1.0.140 to 1.0.142 in /lang/rust (#1806)

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 80ed0f3e8 Bump serde from 1.0.140 to 1.0.142 in /lang/rust (#1806)
80ed0f3e8 is described below

commit 80ed0f3e8acfae7098e64d2295d0a7770c387cee
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Thu Aug 4 10:19:10 2022 +0300

    Bump serde from 1.0.140 to 1.0.142 in /lang/rust (#1806)
    
    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.140 to 1.0.142.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](https://github.com/serde-rs/serde/compare/v1.0.140...v1.0.142)
    
    ---
    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 4581778df4d2ce7a0d54d691b439b020c005a56c)
---
 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 73a2b51b6..e82a1b916 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -982,9 +982,9 @@ checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c"
 
 [[package]]
 name = "serde"
-version = "1.0.140"
+version = "1.0.142"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03"
+checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2"
 dependencies = [
  "serde_derive",
 ]
@@ -1001,9 +1001,9 @@ dependencies = [
 
 [[package]]
 name = "serde_derive"
-version = "1.0.140"
+version = "1.0.142"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da"
+checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 8ca227858..5027b7030 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -63,7 +63,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.6.0", features = ["std"] }
-serde = { default-features = false, version = "1.0.140", features = ["derive"] }
+serde = { default-features = false, version = "1.0.142", features = ["derive"] }
 serde_json = { default-features = false, version = "1.0.82", features = ["std"] }
 snap = { default-features = false, version = "1.0.5", 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 b48215fca..627b8749a 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -41,4 +41,4 @@ syn = { default-features = false, version = "1.0.96", features = ["full", "fold"
 [dev-dependencies]
 apache-avro = { default-features = false, path = "../avro", features = ["derive"] }
 proptest = { default-features = false, version = "1.0.0", features = ["std"] }
-serde = { default-features = false, version = "1.0.140", features = ["derive"] }
+serde = { default-features = false, version = "1.0.142", features = ["derive"] }
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index ab3f76833..008403155 100644
--- a/lang/rust/wasm-demo/Cargo.toml
+++ b/lang/rust/wasm-demo/Cargo.toml
@@ -35,7 +35,7 @@ crate-type = ["cdylib", "rlib"]
 
 [dependencies]
 apache-avro = { path = "../avro" }
-serde = { default-features = false, version = "1.0.140", features = ["derive"] }
+serde = { default-features = false, version = "1.0.142", features = ["derive"] }
 wasm-bindgen = "0.2.82"
 
 [dev-dependencies]