mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 22:47:56 +00:00
33 lines
1.0 KiB
TOML
33 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.6", default-features = false, features = ["tokio02"] }
|
|
jsonrpsee-proc-macros = "=0.2.0-alpha.6"
|
|
|
|
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" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.2", features = ["macros"] }
|
|
|
|
[features]
|
|
remote-test = []
|