mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 10:11:03 +00:00
serde_json: bumped to 1.0.108 (#2168)
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
This commit is contained in:
committed by
GitHub
parent
7b06e634fe
commit
305aefc43d
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
memmap2 = "0.5.0"
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-chain-spec-derive = { path = "derive" }
|
||||
sc-executor = { path = "../executor" }
|
||||
|
||||
@@ -27,7 +27,7 @@ rand = "0.8.5"
|
||||
regex = "1.6.0"
|
||||
rpassword = "7.0.0"
|
||||
serde = "1.0.188"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0.48"
|
||||
bip39 = "2.0.0"
|
||||
tokio = { version = "1.22.0", features = ["signal", "rt-multi-thread", "parking_lot"] }
|
||||
|
||||
@@ -30,7 +30,7 @@ sp-keystore = { path = "../../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
tokio = "1.22.0"
|
||||
sc-consensus = { path = "../../common" }
|
||||
sc-keystore = { path = "../../../keystore" }
|
||||
|
||||
@@ -23,7 +23,7 @@ sp-core = { path = "../../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
sc-rpc = { path = "../../../rpc", features = ["test-helpers"]}
|
||||
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
|
||||
@@ -25,7 +25,7 @@ log = "0.4.17"
|
||||
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0"
|
||||
fork-tree = { path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
array-bytes = "6.1"
|
||||
parking_lot = "0.12.1"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0"
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
|
||||
@@ -23,4 +23,4 @@ sp-runtime = { path = "../../../primitives/runtime" }
|
||||
anyhow = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
|
||||
@@ -34,7 +34,7 @@ partial_sort = "0.2.0"
|
||||
pin-project = "1.0.12"
|
||||
rand = "0.8.5"
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
smallvec = "1.11.0"
|
||||
thiserror = "1.0"
|
||||
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0"
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-mixnet = { path = "../mixnet" }
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
log = "0.4.17"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
tokio = { version = "1.22.0", features = ["parking_lot"] }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
|
||||
@@ -37,7 +37,7 @@ array-bytes = "6.1"
|
||||
log = "0.4.17"
|
||||
futures-util = { version = "0.3.19", default-features = false }
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0"
|
||||
serde_json = "1.0.108"
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
|
||||
@@ -18,7 +18,7 @@ futures = "0.3.21"
|
||||
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
|
||||
@@ -35,7 +35,7 @@ futures-timer = "3.0.1"
|
||||
exit-future = "0.2.0"
|
||||
pin-project = "1.0.12"
|
||||
serde = "1.0.188"
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
sc-keystore = { path = "../keystore" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-trie = { path = "../../primitives/trie" }
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0.48"
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
|
||||
@@ -22,7 +22,7 @@ rand_pcg = "0.3.1"
|
||||
derive_more = "0.99"
|
||||
regex = "1"
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
|
||||
@@ -23,6 +23,6 @@ pin-project = "1.0.12"
|
||||
sc-utils = { path = "../utils" }
|
||||
rand = "0.8.5"
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
serde_json = "1.0.108"
|
||||
thiserror = "1.0.48"
|
||||
wasm-timer = "0.2.5"
|
||||
|
||||
@@ -20,4 +20,4 @@ sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0"
|
||||
serde_json = "1.0.108"
|
||||
|
||||
Reference in New Issue
Block a user