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/11/21 07:17:00 UTC

[avro] branch master updated: Bump serde_json from 1.0.87 to 1.0.88 in /lang/rust (#1973)

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 4c471f75e Bump serde_json from 1.0.87 to 1.0.88 in /lang/rust (#1973)
4c471f75e is described below

commit 4c471f75e9d8b8c61830efafff17cfe635136e77
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Mon Nov 21 09:16:54 2022 +0200

    Bump serde_json from 1.0.87 to 1.0.88 in /lang/rust (#1973)
    
    Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.87 to 1.0.88.
    - [Release notes](https://github.com/serde-rs/json/releases)
    - [Commits](https://github.com/serde-rs/json/compare/v1.0.87...v1.0.88)
    
    ---
    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>
---
 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 661b201e5..0524dc551 100644
--- a/lang/rust/Cargo.lock
+++ b/lang/rust/Cargo.lock
@@ -979,9 +979,9 @@ dependencies = [
 
 [[package]]
 name = "serde_json"
-version = "1.0.87"
+version = "1.0.88"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
+checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7"
 dependencies = [
  "itoa 1.0.3",
  "ryu",
diff --git a/lang/rust/avro/Cargo.toml b/lang/rust/avro/Cargo.toml
index 7e11b531f..9815fb028 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"] }
 serde = { default-features = false, version = "1.0.147", features = ["derive"] }
-serde_json = { default-features = false, version = "1.0.87", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.88", 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 50ce5f883..512476c82 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.21" }
-serde_json = { default-features = false, version = "1.0.87", features = ["std"] }
+serde_json = { default-features = false, version = "1.0.88", features = ["std"] }
 syn = { default-features = false, version = "1.0.103", features = ["full", "fold"] }
 
 [dev-dependencies]