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

Commit

Permalink
remove ws feature from json client (#5478)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikVolf authored Mar 31, 2020
1 parent 92b1be1 commit d477017
Show file tree
Hide file tree
Showing 8 changed files with 135 additions and 349 deletions.
470 changes: 128 additions & 342 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/node/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/paritytech/substrate/"
env_logger = "0.7.0"
futures = "0.1.29"
hyper = "0.12.35"
jsonrpc-core-client = { version = "14.0.3", features = ["http", "ws"] }
jsonrpc-core-client = { version = "14.0.5", default-features = false, features = ["http"] }
log = "0.4.8"
node-primitives = { version = "2.0.0-alpha.5", path = "../primitives" }
sc-rpc = { version = "2.0.0-alpha.5", path = "../../../client/rpc" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/babe/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/paritytech/substrate/"
[dependencies]
sc-consensus-babe = { version = "0.8.0-alpha.5", path = "../" }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
sp-consensus-babe = { version = "0.8.0-alpha.5", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion client/rpc-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ codec = { package = "parity-scale-codec", version = "1.3.0" }
derive_more = "0.99.2"
futures = { version = "0.3.1", features = ["compat"] }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
jsonrpc-pubsub = "14.0.3"
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion frame/contracts/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Node-specific RPC methods for interaction with contracts."
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0" }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
Expand Down
2 changes: 1 addition & 1 deletion frame/transaction-payment/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "RPC interface for the transaction payment module."
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0" }
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-alpha.5", path = "../../../primitives/rpc" }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/rpc/support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Substrate RPC for FRAME's support"

[dependencies]
futures = { version = "0.3.0", features = ["compat"] }
jsonrpc-client-transports = "14"
jsonrpc-client-transports = { version = "14.0.5", default-features = false, features = ["http"] }
jsonrpc-core = "14"
codec = { package = "parity-scale-codec", version = "1" }
serde = "1"
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/rpc/system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sc-client = { version = "0.8.0-alpha.5", path = "../../../../client/" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
futures = "0.3.4"
jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3"
jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
log = "0.4.8"
serde = { version = "1.0.101", features = ["derive"] }
Expand Down

0 comments on commit d477017

Please sign in to comment.