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/10/10 20:04:25 UTC

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

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 3fcc26586 Bump serde_json from 1.0.85 to 1.0.86 in /lang/rust (#1904)
3fcc26586 is described below

commit 3fcc26586f50f9dd161ef2a19d0873c9b98287dd
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Mon Oct 10 23:04:03 2022 +0300

    Bump serde_json from 1.0.85 to 1.0.86 in /lang/rust (#1904)
    
    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.85 to 1.0.86.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](https://github.com/serde-rs/json/compare/v1.0.85...v1.0.86)
    
    ---
    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 d45036ff7a329dbcfd6d2e969397949cc9b9d6b7)
---
 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 b525c5139..becdaafba 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -979,9 +979,9 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.85"
+version = "1.0.86"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
+checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
 dependencies = [
  "itoa 1.0.3",
  "ryu",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index ca67632b5..ac098c578 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.145", features = ["derive"] }
-serde_json = { default-features = false, version = "1.0.85", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.86", 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 89f8d9de2..580a19667 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.46" }
 quote = { default-features = false, version = "1.0.21" }
-serde_json = { default-features = false, version = "1.0.85", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.86", features = ["std"] }
 syn = { default-features = false, version = "1.0.102", features = ["full", "fold"] }
 
 [dev-dependencies]