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/22 19:42:07 UTC

[avro] branch branch-1.11 updated: Bump serde_json from 1.0.83 to 1.0.85 in /lang/rust (#1835)

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 8701e7cfe Bump serde_json from 1.0.83 to 1.0.85 in /lang/rust (#1835)
8701e7cfe is described below

commit 8701e7cfebc7bf1e8a9eb119f15bb84a999b8d51
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Mon Aug 22 22:41:40 2022 +0300

    Bump serde_json from 1.0.83 to 1.0.85 in /lang/rust (#1835)
    
    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.83 to 1.0.85.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](https://github.com/serde-rs/json/compare/v1.0.83...v1.0.85)
    
    ---
    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 d7102dfbcd49b0f7405853f76aea70e134a8b3ff)
---
 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 d611f764b..b1246f986 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -988,9 +988,9 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.83"
+version = "1.0.85"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
+checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
 dependencies = [
  "itoa 1.0.3",
  "ryu",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 5f5866ec2..897300e47 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.6.0", features = ["std"] }
 serde = { default-features = false, version = "1.0.143", features = ["derive"] }
-serde_json = { default-features = false, version = "1.0.83", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.85", features = ["std"] }
 snap = { default-features = false, version = "1.0.5", 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 8f4e78938..526111f6e 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.1" }
 proc-macro2 = { default-features = false, version = "1.0.43" }
 quote = { default-features = false, version = "1.0.21" }
-serde_json = { default-features = false, version = "1.0.83", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.85", features = ["std"] }
 syn = { default-features = false, version = "1.0.99", features = ["full", "fold"] }
 
 [dev-dependencies]