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/12/12 19:42:59 UTC

[avro] branch branch-1.11 updated: Bump serde from 1.0.149 to 1.0.150 in /lang/rust (#2010)

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 ec2255830 Bump serde from 1.0.149 to 1.0.150 in /lang/rust (#2010)
ec2255830 is described below

commit ec22558309f56ec4a1ee3726c67da28f4a6e9f07
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Mon Dec 12 21:42:22 2022 +0200

    Bump serde from 1.0.149 to 1.0.150 in /lang/rust (#2010)
    
    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.149 to 1.0.150.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](https://github.com/serde-rs/serde/compare/v1.0.149...v1.0.150)
    
    ---
    updated-dependencies:
    - dependency-name: serde
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
    (cherry picked from commit aae64be43af013bbf1159c8af880b98b6c7fb8c2)
---
 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 e1ddbaf2a..ba1f927c1 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -855,18 +855,18 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
 
 [[package]]
 name = "serde"
-version = "1.0.149"
+version = "1.0.150"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "256b9932320c590e707b94576e3cc1f7c9024d0ee6612dfbcf1cb106cbe8e055"
+checksum = "e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91"
 dependencies = [
  "serde_derive",
 ]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.149"
+version = "1.0.150"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4eae9b04cbffdfd550eb462ed33bc6a1b68c935127d008b27444d08380f94e4"
+checksum = "42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 94640b1de..e3c28c1bf 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.7.0", features = ["std", "perf"] }
-serde = { default-features = false, version = "1.0.149", features = ["derive"] }
+serde = { default-features = false, version = "1.0.150", features = ["derive"] }
 serde_json = { default-features = false, version = "1.0.89", 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 40d1f8221..52263096f 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.105", 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.149", features = ["derive"] }
+serde = { default-features = false, version = "1.0.150", features = ["derive"] }
diff --git a/lang/rust/wasm-demo/Cargo.toml b/lang/rust/wasm-demo/Cargo.toml
index 6b6eb31b0..418ba7737 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.149", features = ["derive"] }
+serde = { default-features = false, version = "1.0.150", features = ["derive"] }
 wasm-bindgen = "0.2.83"
 
 [dev-dependencies]