mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 21:41:12 +00:00
refactor(remote ext): use jsonrpsee (#8105)
* A clean new attempt * Checkpoint to move remote. * A lot of dependency wiring to make it feature gated. * bad macro, bad macro. * refactor(remote ext): use jsonrpsee * refactor(remote ext): use jsonrpsee * Undo the DB mess. * fix(remote ext): use max limit `u32::MAX` * resolve TODOs * jsonrpsee switch to `hyper` as backend * Update utils/frame/try-runtime/remote-externalities/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * update jsonrpsee * remove boiler-plate * suppress warnings to CI happy * Unbreak his build * Use option * fix nit; make it work again * fix err message. * Update utils/frame/remote-externalities/Cargo.toml * Fix uri stuff * remove needless clone Co-authored-by: kianenigma <kian.peymani@gmail.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: kianenigma <kian@parity.io>
This commit is contained in:
@@ -13,16 +13,15 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
jsonrpc-core-client = { version = "15.1.0", features = ["http"] }
|
||||
sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" }
|
||||
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
||||
futures = "0.3"
|
||||
jsonrpsee-http-client = { version = "0.2.0-alpha", default-features = false, features = ["tokio02"] }
|
||||
# Needed by jsonrpsee-proc-macros: https://github.com/paritytech/jsonrpsee/issues/214
|
||||
jsonrpsee-types = "0.2.0-alpha"
|
||||
jsonrpsee-proc-macros = "0.2.0-alpha"
|
||||
|
||||
hex-literal = "0.3.1"
|
||||
env_logger = "0.8.2"
|
||||
log = "0.4.11"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
tokio = "0.1.22"
|
||||
|
||||
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||
|
||||
Reference in New Issue
Block a user