mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 13:57:23 +00:00
6bd09c07bd
* 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>
34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "remote-externalities"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "An externalities provided environemnt that can load itself from remote nodes or cache files"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
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" }
|
|
|
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.6.5", features = ["attributes"] }
|
|
|
|
[features]
|
|
remote-test = []
|