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/20 19:36:21 UTC

[avro] branch branch-1.11 updated: Bump serde_json from 1.0.89 to 1.0.91 in /lang/rust (#2028)

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 ebeb16db1 Bump serde_json from 1.0.89 to 1.0.91 in /lang/rust (#2028)
ebeb16db1 is described below

commit ebeb16db13b2d910bb06325eddb2c5af6f395a16
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Dec 20 21:36:00 2022 +0200

    Bump serde_json from 1.0.89 to 1.0.91 in /lang/rust (#2028)
    
    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.89 to 1.0.91.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](https://github.com/serde-rs/json/compare/v1.0.89...v1.0.91)
    
    ---
    updated-dependencies:
    - dependency-name: serde_json
      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 720bccdc1f99bfaee9d0074a743b0b29e2117002)
---
 lang/rust/Cargo.lock             | 4 ++--
 lang/rust/avro/Cargo.toml        | 2 +-
 lang/rust/avro_derive/Cargo.toml | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lang/rust/Cargo.lock b/lang/rust/Cargo.lock
index 7b9049882..7fa73644e 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -875,9 +875,9 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.89"
+version = "1.0.91"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
+checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
 dependencies = [
  "itoa",
  "ryu",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index d937d833a..877147e8e 100644
--- a/lang/rust/avro/Cargo.toml
+++ b/lang/rust/avro/Cargo.toml
@@ -64,7 +64,7 @@ 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.150", features = ["derive"] }
-serde_json = { default-features = false, version = "1.0.89", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.91", features = ["std"] }
 snap = { default-features = false, version = "1.1.0", optional = true }
 strum = { default-features = false, version = "0.24.1" }
 strum_macros = { default-features = false, version = "0.24.3" }
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index 9b37dbe23..2a5fac53d 100644
--- a/lang/rust/avro_derive/Cargo.toml
+++ b/lang/rust/avro_derive/Cargo.toml
@@ -35,7 +35,7 @@ proc-macro = true
 darling = { default-features = false, version = "0.14.2" }
 proc-macro2 = { default-features = false, version = "1.0.47" }
 quote = { default-features = false, version = "1.0.23" }
-serde_json = { default-features = false, version = "1.0.89", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.91", features = ["std"] }
 syn = { default-features = false, version = "1.0.107", features = ["full", "fold"] }
 
 [dev-dependencies]