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 08:54:23 UTC

[avro] branch master updated: Bump serde_json from 1.0.82 to 1.0.83 in /lang/rust (#1803)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new b201f5dff Bump serde_json from 1.0.82 to 1.0.83 in /lang/rust (#1803)
b201f5dff is described below

commit b201f5dff1034f1c0ab91146f2f42cc8f014a3c9
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Thu Aug 4 11:54:18 2022 +0300

    Bump serde_json from 1.0.82 to 1.0.83 in /lang/rust (#1803)
    
    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.82 to 1.0.83.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](https://github.com/serde-rs/json/compare/v1.0.82...v1.0.83)
    
    ---
    updated-dependencies:
    - dependency-name: serde_json
      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>
---
 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 fad5ba9c7..a6b071ee9 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -1012,9 +1012,9 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.82"
+version = "1.0.83"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
+checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
 dependencies = [
  "itoa 1.0.2",
  "ryu",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 36475c24c..195286a1c 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.142", features = ["derive"] }
-serde_json = { default-features = false, version = "1.0.82", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.83", 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.2" }
diff --git a/lang/rust/avro_derive/Cargo.toml b/lang/rust/avro_derive/Cargo.toml
index a5b51899d..fbd7d4497 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.82", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.83", features = ["std"] }
 syn = { default-features = false, version = "1.0.99", features = ["full", "fold"] }
 
 [dev-dependencies]