Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit ff7d5a1

Browse files
Bump jsonrpsee from 0.16.2 to 0.19.0
Bumps [jsonrpsee](https://github.com/paritytech/jsonrpsee) from 0.16.2 to 0.19.0. - [Release notes](https://github.com/paritytech/jsonrpsee/releases) - [Changelog](https://github.com/paritytech/jsonrpsee/blob/master/CHANGELOG.md) - [Commits](paritytech/jsonrpsee@v0.16.2...v0.19.0) --- updated-dependencies: - dependency-name: jsonrpsee dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7a762e4 commit ff7d5a1

File tree

21 files changed

+47
-75
lines changed

21 files changed

+47
-75
lines changed

Cargo.lock

+26-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node-template/node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
4444
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
4545

4646
# These dependencies are used for the node template's RPCs
47-
jsonrpsee = { version = "0.16.2", features = ["server"] }
47+
jsonrpsee = { version = "0.19.0", features = ["server"] }
4848
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
4949
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
5050
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }

bin/node/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ array-bytes = "6.1"
4141
clap = { version = "4.2.5", features = ["derive"], optional = true }
4242
codec = { package = "parity-scale-codec", version = "3.6.1" }
4343
serde = { version = "1.0.163", features = ["derive"] }
44-
jsonrpsee = { version = "0.16.2", features = ["server"] }
44+
jsonrpsee = { version = "0.19.0", features = ["server"] }
4545
futures = "0.3.21"
4646
log = "0.4.17"
4747
rand = "0.8"

bin/node/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publish = false
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
jsonrpsee = { version = "0.16.2", features = ["server"] }
16+
jsonrpsee = { version = "0.19.0", features = ["server"] }
1717
node-primitives = { version = "2.0.0", path = "../primitives" }
1818
pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
1919
mmr-rpc = { version = "4.0.0-dev", path = "../../../client/merkle-mountain-range/rpc/" }

client/consensus/babe/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
16+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1717
futures = "0.3.21"
1818
serde = { version = "1.0.163", features = ["derive"] }
1919
thiserror = "1.0"

client/consensus/beefy/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = "https://substrate.io"
1111
[dependencies]
1212
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
1313
futures = "0.3.21"
14-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
14+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1515
log = "0.4"
1616
parking_lot = "0.12.1"
1717
serde = { version = "1.0.163", features = ["derive"] }

client/consensus/grandpa/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ homepage = "https://substrate.io"
1212
[dependencies]
1313
finality-grandpa = { version = "0.16.2", features = ["derive-codec"] }
1414
futures = "0.3.16"
15-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
15+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1616
log = "0.4.8"
1717
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
1818
serde = { version = "1.0.163", features = ["derive"] }

client/consensus/manual-seal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
16+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1717
assert_matches = "1.3.0"
1818
async-trait = "0.1.57"
1919
codec = { package = "parity-scale-codec", version = "3.6.1" }

client/merkle-mountain-range/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
1515
codec = { package = "parity-scale-codec", version = "3.6.1" }
16-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
16+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1717
serde = { version = "1.0.163", features = ["derive"] }
1818
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
1919
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }

client/rpc-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ sp-core = { version = "21.0.0", path = "../../primitives/core" }
2424
sp-rpc = { version = "6.0.0", path = "../../primitives/rpc" }
2525
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
2626
sp-version = { version = "22.0.0", path = "../../primitives/version" }
27-
jsonrpsee = { version = "0.16.2", features = ["server", "client-core", "macros"] }
27+
jsonrpsee = { version = "0.19.0", features = ["server", "client-core", "macros"] }

client/rpc-servers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
jsonrpsee = { version = "0.16.2", features = ["server"] }
16+
jsonrpsee = { version = "0.19.0", features = ["server"] }
1717
log = "0.4.17"
1818
serde_json = "1.0.85"
1919
tokio = { version = "1.22.0", features = ["parking_lot"] }

client/rpc-spec-v2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
16+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1717
# Internal chain structures for "chain_spec".
1818
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
1919
# Pool for submitting extrinsics required by "transaction"

client/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
[dependencies]
1616
codec = { package = "parity-scale-codec", version = "3.6.1" }
1717
futures = "0.3.21"
18-
jsonrpsee = { version = "0.16.2", features = ["server"] }
18+
jsonrpsee = { version = "0.19.0", features = ["server"] }
1919
log = "0.4.17"
2020
parking_lot = "0.12.1"
2121
serde_json = "1.0.85"

client/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test-helpers = []
2222
runtime-benchmarks = ["sc-client-db/runtime-benchmarks"]
2323

2424
[dependencies]
25-
jsonrpsee = { version = "0.16.2", features = ["server"] }
25+
jsonrpsee = { version = "0.19.0", features = ["server"] }
2626
thiserror = "1.0.30"
2727
futures = "0.3.21"
2828
rand = "0.8.5"

client/sync-state-rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
1515
codec = { package = "parity-scale-codec", version = "3.6.1" }
16-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
16+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1717
serde = { version = "1.0.163", features = ["derive"] }
1818
serde_json = "1.0.85"
1919
thiserror = "1.0.30"

frame/transaction-payment/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
1616
codec = { package = "parity-scale-codec", version = "3.6.1" }
17-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
17+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1818
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" }
1919
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
2020
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }

utils/frame/remote-externalities/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "An externalities provided environment that can load itself from r
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
jsonrpsee = { version = "0.16.2", features = ["http-client"] }
15+
jsonrpsee = { version = "0.19.0", features = ["http-client"] }
1616
codec = { package = "parity-scale-codec", version = "3.6.1" }
1717
log = "0.4.17"
1818
serde = "1.0.163"

utils/frame/rpc/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Shared JSON-RPC client"
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
15+
jsonrpsee = { version = "0.19.0", features = ["ws-client"] }
1616
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
1717
async-trait = "0.1.57"
1818
serde = "1"

utils/frame/rpc/state-trie-migration-rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sp-state-machine = { path = "../../../../primitives/state-machine" }
2121
sp-trie = { path = "../../../../primitives/trie" }
2222
trie-db = "0.27.0"
2323

24-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
24+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
2525

2626
# Substrate Dependencies
2727
sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" }

utils/frame/rpc/support/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ targets = ["x86_64-unknown-linux-gnu"]
1616

1717
[dependencies]
1818
codec = { package = "parity-scale-codec", version = "3.6.1" }
19-
jsonrpsee = { version = "0.16.2", features = ["jsonrpsee-types"] }
19+
jsonrpsee = { version = "0.19.0", features = ["jsonrpsee-types"] }
2020
serde = "1"
2121
frame-support = { version = "4.0.0-dev", path = "../../../../frame/support" }
2222
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
2323
sp-storage = { version = "13.0.0", path = "../../../../primitives/storage" }
2424

2525
[dev-dependencies]
2626
scale-info = "2.1.1"
27-
jsonrpsee = { version = "0.16.2", features = ["ws-client", "jsonrpsee-types"] }
27+
jsonrpsee = { version = "0.19.0", features = ["ws-client", "jsonrpsee-types"] }
2828
tokio = "1.22.0"
2929
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
3030
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }

utils/frame/rpc/system/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
1616
codec = { package = "parity-scale-codec", version = "3.6.1" }
17-
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
17+
jsonrpsee = { version = "0.19.0", features = ["client-core", "server", "macros"] }
1818
futures = "0.3.21"
1919
log = "0.4.17"
2020
frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../../frame/system/rpc/runtime-api" }

0 commit comments

Comments
 (0)