From 4be12d5d23a994fa398526d32af44d272d478fdf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Nov 2022 00:54:49 +0000 Subject: [PATCH] Bump serde_json from 1.0.60 to 1.0.89 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.60 to 1.0.89. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.60...v1.0.89) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++------- client/faucet/Cargo.toml | 2 +- client/json-rpc/Cargo.toml | 2 +- client/swiss-knife/Cargo.toml | 2 +- common/logger/Cargo.toml | 2 +- common/metrics/Cargo.toml | 2 +- common/trace/Cargo.toml | 2 +- config/management/operational/Cargo.toml | 2 +- consensus/Cargo.toml | 2 +- crypto/crypto/Cargo.toml | 2 +- devtools/x/Cargo.toml | 2 +- execution/executor/Cargo.toml | 2 +- json-rpc/Cargo.toml | 2 +- json-rpc/types/Cargo.toml | 2 +- language/compiler/Cargo.toml | 2 +- .../writeset-transaction-generator/Cargo.toml | 2 +- language/diem-vm/Cargo.toml | 2 +- language/e2e-testsuite/Cargo.toml | 2 +- language/move-core/types/Cargo.toml | 2 +- language/move-prover/Cargo.toml | 2 +- language/tools/resource-viewer/Cargo.toml | 2 +- language/vm/Cargo.toml | 2 +- mempool/Cargo.toml | 2 +- secure/json-rpc/Cargo.toml | 2 +- secure/storage/Cargo.toml | 2 +- secure/storage/github/Cargo.toml | 2 +- secure/storage/vault/Cargo.toml | 2 +- storage/backup/backup-cli/Cargo.toml | 2 +- storage/diemsum/Cargo.toml | 2 +- testsuite/cluster-test/Cargo.toml | 2 +- testsuite/diem-fuzzer/Cargo.toml | 2 +- types/Cargo.toml | 4 ++-- 32 files changed, 46 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1540b3e57c26..0f9565b4da89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1171,7 +1171,7 @@ checksum = "fc4666154fd004af3fd6f1da2e81a96fd5a81927fe8ddb6ecc79e2aa6e138b54" dependencies = [ "bstr", "csv-core", - "itoa", + "itoa 0.4.6", "ryu", "serde", ] @@ -3307,7 +3307,7 @@ checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9" dependencies = [ "bytes", "fnv", - "itoa", + "itoa 0.4.6", ] [[package]] @@ -3362,7 +3362,7 @@ dependencies = [ "http-body", "httparse", "httpdate", - "itoa", + "itoa 0.4.6", "pin-project 1.0.2", "socket2", "tokio", @@ -3562,6 +3562,12 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6" +[[package]] +name = "itoa" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" + [[package]] name = "jemalloc-sys" version = "0.3.2" @@ -6018,11 +6024,11 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.60" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1500e84d27fe482ed1dc791a56eddc2f230046a040fa908c08bda1d9fb615779" +checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" dependencies = [ - "itoa", + "itoa 1.0.4", "ryu", "serde", ] @@ -6034,7 +6040,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" dependencies = [ "dtoa", - "itoa", + "itoa 0.4.6", "serde", "url", ] @@ -6046,7 +6052,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" dependencies = [ "form_urlencoded", - "itoa", + "itoa 0.4.6", "ryu", "serde", ] diff --git a/client/faucet/Cargo.toml b/client/faucet/Cargo.toml index 08252a9465b4..c79726d2cb95 100644 --- a/client/faucet/Cargo.toml +++ b/client/faucet/Cargo.toml @@ -31,7 +31,7 @@ move-core-types = { path = "../../language/move-core/types", version = "0.1.0" } transaction-builder-generated = { path = "../transaction-builder", version = "0.1.0" } [dev-dependencies] -serde_json = "1.0.60" +serde_json = "1.0.89" tempfile = "3.1.0" diem-config = { path = "../../config", version = "0.1.0" } diff --git a/client/json-rpc/Cargo.toml b/client/json-rpc/Cargo.toml index 14666627ddb7..37deaad92ca5 100644 --- a/client/json-rpc/Cargo.toml +++ b/client/json-rpc/Cargo.toml @@ -17,7 +17,7 @@ hex = "0.4.2" rand = "0.7.3" reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false } serde = { version = "1.0.117", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" tokio = { version = "0.2.22", features = ["full"] } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diff --git a/client/swiss-knife/Cargo.toml b/client/swiss-knife/Cargo.toml index eb4852e6acdf..26134b6c1a4f 100644 --- a/client/swiss-knife/Cargo.toml +++ b/client/swiss-knife/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" structopt = "0.3.21" rand = "0.7.3" hex = "0.4.2" -serde_json = "1.0.60" +serde_json = "1.0.89" serde = { version = "1.0.117", features = ["derive"] } lcs = { version = "0.1.0", package = "libra-canonical-serialization" } diff --git a/common/logger/Cargo.toml b/common/logger/Cargo.toml index b9ac1b6cf171..f08fad8eb481 100644 --- a/common/logger/Cargo.toml +++ b/common/logger/Cargo.toml @@ -20,5 +20,5 @@ diem-infallible = { path = "../infallible", version = "0.1.0" } diem-workspace-hack = { path = "../workspace-hack", version = "0.1.0" } once_cell = "1.4.1" serde = { version = "1.0.117", features = ["derive"] } -serde_json = "1.0.60" +serde_json = "1.0.89" prometheus = { version = "0.11.0", default-features = false } diff --git a/common/metrics/Cargo.toml b/common/metrics/Cargo.toml index 94a8c9b7a022..39ed0774084e 100644 --- a/common/metrics/Cargo.toml +++ b/common/metrics/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.8" hyper = "0.13.9" once_cell = "1.4.1" prometheus = { version = "0.11.0", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" tokio = "0.2.22" diem-logger = { path = "../logger", version = "0.1.0" } diff --git a/common/trace/Cargo.toml b/common/trace/Cargo.toml index 0e4317acab88..fe823fb74fb9 100644 --- a/common/trace/Cargo.toml +++ b/common/trace/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" chrono = "0.4.19" structopt = "0.3.21" tokio = { version = "0.2.22", features = ["full"] } -serde_json = "1.0.60" +serde_json = "1.0.89" serde = "1.0.117" anyhow = "1.0.34" reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false } diff --git a/config/management/operational/Cargo.toml b/config/management/operational/Cargo.toml index 4b7a995ea0e4..fd7e7483bc9b 100644 --- a/config/management/operational/Cargo.toml +++ b/config/management/operational/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" anyhow = "1.0.34" hex = "0.4.2" serde = { version = "1.0.117", features = ["rc"], default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" structopt = "0.3.21" thiserror = "1.0.22" toml = { version = "0.5.7", default-features = false } diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 5062434d0ebd..f50bb2cd0b87 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -24,7 +24,7 @@ once_cell = "1.4.1" proptest = { version = "0.10.1", optional = true } rand = { version = "0.7.3", default-features = false } serde = { version = "1.0.117", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" termion = { version = "1.5.5", default-features = false } thiserror = "1.0.22" tokio = { version = "0.2.22", features = ["full"] } diff --git a/crypto/crypto/Cargo.toml b/crypto/crypto/Cargo.toml index 4b4acfedea6b..f0c73346c2af 100644 --- a/crypto/crypto/Cargo.toml +++ b/crypto/crypto/Cargo.toml @@ -49,7 +49,7 @@ proptest-derive = "0.2.0" ripemd160 = "0.9.1" criterion = "0.3.3" sha3 = "0.9.1" -serde_json = "1.0.60" +serde_json = "1.0.89" trybuild = "1.0.35" [features] diff --git a/devtools/x/Cargo.toml b/devtools/x/Cargo.toml index 6c5264e7ff1b..806a4a2d912a 100644 --- a/devtools/x/Cargo.toml +++ b/devtools/x/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" [dependencies] determinator = "0.1.1" serde = { version = "1.0.117", features = ["derive"] } -serde_json = "1.0.60" +serde_json = "1.0.89" structopt = "0.3.21" anyhow = "1.0.34" colored-diff = "0.2.2" diff --git a/execution/executor/Cargo.toml b/execution/executor/Cargo.toml index 8f86e0c8abd6..c15f69cacdc2 100644 --- a/execution/executor/Cargo.toml +++ b/execution/executor/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.34" fail = "0.4.0" itertools = { version = "0.9.0", default-features = false } once_cell = "1.4.1" -serde_json = "1.0.60" +serde_json = "1.0.89" serde = { version = "1.0.117", features = ["derive"] } consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0"} diff --git a/json-rpc/Cargo.toml b/json-rpc/Cargo.toml index dfcfb597605e..bc9b35e3500a 100644 --- a/json-rpc/Cargo.toml +++ b/json-rpc/Cargo.toml @@ -17,7 +17,7 @@ hex = "0.4.2" hyper = "0.13.9" once_cell = "1.4.1" rand = "0.7.3" -serde_json = "1.0.60" +serde_json = "1.0.89" serde = { version = "1.0.117", default-features = false } tokio = { version = "0.2.22", features = ["full"] } warp = "0.2.5" diff --git a/json-rpc/types/Cargo.toml b/json-rpc/types/Cargo.toml index 6c53c370b930..7f3419e07a68 100644 --- a/json-rpc/types/Cargo.toml +++ b/json-rpc/types/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" anyhow = "1.0.34" hex = "0.4.2" serde = { version = "1.0.117", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" prost = "0.6.1" compiled-stdlib = { path = "../../language/stdlib/compiled", version = "0.1.0" } diff --git a/language/compiler/Cargo.toml b/language/compiler/Cargo.toml index 7db72154c544..611562d44fb8 100644 --- a/language/compiler/Cargo.toml +++ b/language/compiler/Cargo.toml @@ -21,7 +21,7 @@ move-ir-types = { path = "../move-ir/types", version = "0.1.0" } vm = { path = "../vm", version = "0.1.0" } lcs = { version = "0.1.0", package = "libra-canonical-serialization" } structopt = "0.3.21" -serde_json = "1.0.60" +serde_json = "1.0.89" [features] default = [] diff --git a/language/diem-tools/writeset-transaction-generator/Cargo.toml b/language/diem-tools/writeset-transaction-generator/Cargo.toml index b69a775ddf0e..e97d241161da 100644 --- a/language/diem-tools/writeset-transaction-generator/Cargo.toml +++ b/language/diem-tools/writeset-transaction-generator/Cargo.toml @@ -17,7 +17,7 @@ structopt = "0.3.21" tempfile = "3.1.0" handlebars = "3.5.1" serde = { version = "1.0.117", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diem-types = { path = "../../../types", version = "0.1.0" } diff --git a/language/diem-vm/Cargo.toml b/language/diem-vm/Cargo.toml index d5523efc6cf0..41dcbac43fd6 100644 --- a/language/diem-vm/Cargo.toml +++ b/language/diem-vm/Cargo.toml @@ -28,7 +28,7 @@ move-core-types = { path = "../move-core/types", version = "0.1.0" } move-vm-runtime = { path = "../move-vm/runtime", version = "0.1.0" } move-vm-types = { path = "../move-vm/types", version = "0.1.0" } vm = { path = "../vm", version = "0.1.0" } -serde_json = "1.0.60" +serde_json = "1.0.89" serde = { version = "1.0.117", default-features = false } [dev-dependencies] diff --git a/language/e2e-testsuite/Cargo.toml b/language/e2e-testsuite/Cargo.toml index 12cf8fa51d4a..2bf92acefc59 100644 --- a/language/e2e-testsuite/Cargo.toml +++ b/language/e2e-testsuite/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" publish = false [dependencies] -serde_json = "1.0.60" +serde_json = "1.0.89" language-e2e-tests = { path = "../testing-infra/e2e-tests", version = "0.1.0" } bytecode-verifier = { path = "../bytecode-verifier", version = "0.1.0" } lcs = { version = "0.1.0", package = "libra-canonical-serialization" } diff --git a/language/move-core/types/Cargo.toml b/language/move-core/types/Cargo.toml index d0c2acf86180..3cb9258d1933 100644 --- a/language/move-core/types/Cargo.toml +++ b/language/move-core/types/Cargo.toml @@ -34,7 +34,7 @@ once_cell = "1.4.1" proptest = "0.10.1" proptest-derive = "0.2.0" regex = "1.4.2" -serde_json = "1.0.60" +serde_json = "1.0.89" [features] default = ["fiat"] diff --git a/language/move-prover/Cargo.toml b/language/move-prover/Cargo.toml index 1e926144f975..e6689f3c6c36 100644 --- a/language/move-prover/Cargo.toml +++ b/language/move-prover/Cargo.toml @@ -37,7 +37,7 @@ pretty = "0.10.0" rand = "0.7.3" regex = "1.4.2" serde = { version = "1.0.117", features = ["derive"] } -serde_json = "1.0.60" +serde_json = "1.0.89" simplelog = "0.8.0" once_cell = "1.4.1" tokio = { version = "0.2", features = ["full"] } diff --git a/language/tools/resource-viewer/Cargo.toml b/language/tools/resource-viewer/Cargo.toml index 12aa4a7a5ada..b516fb19ff00 100644 --- a/language/tools/resource-viewer/Cargo.toml +++ b/language/tools/resource-viewer/Cargo.toml @@ -19,7 +19,7 @@ move-vm-runtime = { path = "../../move-vm/runtime", version = "0.1.0" } move-vm-types = { path = "../../move-vm/types", version = "0.1.0" } compiled-stdlib = { path = "../../stdlib/compiled", version = "0.1.0" } vm = { path = "../../vm", version = "0.1.0" } -serde_json = "1.0.60" +serde_json = "1.0.89" serde = { version = "1.0.117", features = ["derive", "rc"] } anyhow = "1.0.34" diff --git a/language/vm/Cargo.toml b/language/vm/Cargo.toml index bb2a00eaa561..0ebb7e32ca26 100644 --- a/language/vm/Cargo.toml +++ b/language/vm/Cargo.toml @@ -27,7 +27,7 @@ proptest = "0.10.1" proptest-derive = "0.2.0" diem-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0" } move-core-types = { path = "../move-core/types", version = "0.1.0", features = ["fuzzing"] } -serde_json = "1.0.60" +serde_json = "1.0.89" [features] default = [] diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index 7deb64d46859..b4885c154dd3 100644 --- a/mempool/Cargo.toml +++ b/mempool/Cargo.toml @@ -36,7 +36,7 @@ mirai-annotations = "1.10.1" network = { path = "../network", version = "0.1.0" } rand = "0.7.3" netcore = { path = "../network/netcore", version = "0.1.0" } -serde_json = "1.0.60" +serde_json = "1.0.89" storage-interface = { path = "../storage/storage-interface", version = "0.1.0" } subscription-service = { path = "../common/subscription-service", version = "0.1.0" } vm-validator = { path = "../vm-validator", version = "0.1.0" } diff --git a/secure/json-rpc/Cargo.toml b/secure/json-rpc/Cargo.toml index 4ae571d66ce7..1a47bb49957f 100644 --- a/secure/json-rpc/Cargo.toml +++ b/secure/json-rpc/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" hex = "0.4.2" proptest = { version = "0.10.1", optional = true } serde = { version = "1.0.117", features = ["derive"], default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" thiserror = "1.0.22" ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } diff --git a/secure/storage/Cargo.toml b/secure/storage/Cargo.toml index 09f15e725720..bb92051fb806 100644 --- a/secure/storage/Cargo.toml +++ b/secure/storage/Cargo.toml @@ -15,7 +15,7 @@ chrono = "0.4.19" enum_dispatch = "0.3.4" rand = "0.7.3" serde = { version = "1.0.117", features = ["rc"], default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" thiserror = "1.0.22" lcs = { version = "0.1.0", package = "libra-canonical-serialization" } diff --git a/secure/storage/github/Cargo.toml b/secure/storage/github/Cargo.toml index 559eaf1c3b56..bcd185523643 100644 --- a/secure/storage/github/Cargo.toml +++ b/secure/storage/github/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] serde = { version = "1.0.117", features = ["derive"], default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" thiserror = "1.0.22" ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } diff --git a/secure/storage/vault/Cargo.toml b/secure/storage/vault/Cargo.toml index 2f4794f53890..18cec3805339 100644 --- a/secure/storage/vault/Cargo.toml +++ b/secure/storage/vault/Cargo.toml @@ -16,7 +16,7 @@ once_cell = "1.4.1" proptest = { version = "0.10.1", optional = true } native-tls = "0.2.6" serde = { version = "1.0.117", features = ["derive"], default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" thiserror = "1.0.22" ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } diff --git a/storage/backup/backup-cli/Cargo.toml b/storage/backup/backup-cli/Cargo.toml index 7dc4bb19a9c8..832a0d2dbbe6 100644 --- a/storage/backup/backup-cli/Cargo.toml +++ b/storage/backup/backup-cli/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.7.3" regex = "1.4.2" reqwest = { version = "0.10.9", features = ["stream"], default-features = false } serde = { version = "1.0.117", features = ["derive"] } -serde_json = "1.0.60" +serde_json = "1.0.89" structopt = "0.3.21" toml = "0.5.7" tokio = { version = "0.2.22", features = ["full"] } diff --git a/storage/diemsum/Cargo.toml b/storage/diemsum/Cargo.toml index edfb057311d2..97978a4bdb03 100644 --- a/storage/diemsum/Cargo.toml +++ b/storage/diemsum/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" anyhow = "1.0.34" structopt = "0.3.21" serde = "1.0.117" -serde_json = "1.0.60" +serde_json = "1.0.89" diemdb = { path = "../diemdb", version = "0.1.0", features = ["diemsum"] } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diff --git a/testsuite/cluster-test/Cargo.toml b/testsuite/cluster-test/Cargo.toml index 565984988637..692baca7374b 100644 --- a/testsuite/cluster-test/Cargo.toml +++ b/testsuite/cluster-test/Cargo.toml @@ -18,7 +18,7 @@ once_cell = "1.4.1" rand = "0.7.3" regex = { version = "1.4.2", default-features = false, features = ["std", "perf"] } reqwest = { version = "0.10.9", features = ["blocking", "json"] } -serde_json = "1.0.60" +serde_json = "1.0.89" serde_yaml = "0.8.14" termion = "1.5.5" serde = { version = "1.0.117", features = ["derive"] } diff --git a/testsuite/diem-fuzzer/Cargo.toml b/testsuite/diem-fuzzer/Cargo.toml index b12a9491c8d1..a74ec64ea83f 100644 --- a/testsuite/diem-fuzzer/Cargo.toml +++ b/testsuite/diem-fuzzer/Cargo.toml @@ -17,7 +17,7 @@ once_cell = "1.4.1" proptest = { version = "0.10.1", default-features = false } proptest-derive = { version = "0.2.0", default-features = false } rusty-fork = { version = "0.3.0", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" sha-1 = { version = "0.9.2", default-features = false } structopt = "0.3.21" rand = "0.7.3" diff --git a/types/Cargo.toml b/types/Cargo.toml index bcc6f81a4383..1e271b297e17 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -21,7 +21,7 @@ proptest = { version = "0.10.1", default-features = false, optional = true } proptest-derive = { version = "0.2.0", default-features = false, optional = true } rand = "0.7.3" serde = { version = "1.0.117", default-features = false } -serde_json = "1.0.60" +serde_json = "1.0.89" serde_bytes = "0.11.5" thiserror = "1.0.22" tiny-keccak = { version = "2.0.2", default-features = false, features = ["sha3"] } @@ -39,7 +39,7 @@ move-core-types = { path = "../language/move-core/types", version = "0.1.0" } regex = "1.4.2" proptest = "0.10.1" proptest-derive = "0.2.0" -serde_json = "1.0.60" +serde_json = "1.0.89" diem-crypto = { path = "../crypto/crypto", version = "0.1.0", features = ["fuzzing"] } diem-network-address = { path = "../network/network-address", version = "0.1.0", features = ["fuzzing"] }