Files
pezkuwi-subxt/substrate/test-utils/client/Cargo.toml
T
Arkadiy Paronyan 7b34438178 Validate encoding of extrinsics passed to runtime (#6442)
* Validate encoding of extrinsics passed to runtime

* Bump codec version explicitly
2020-06-19 19:27:16 +00:00

30 lines
1.4 KiB
TOML

[package]
name = "substrate-test-client"
version = "2.0.0-rc3"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc3", path = "../../client/api" }
sc-light = { version = "2.0.0-rc3", path = "../../client/light" }
sc-client-db = { version = "0.8.0-rc3", features = ["test-helpers"], path = "../../client/db" }
sp-consensus = { version = "0.8.0-rc3", path = "../../primitives/consensus/common" }
sc-executor = { version = "0.8.0-rc3", path = "../../client/executor" }
sc-consensus = { version = "0.8.0-rc3", path = "../../client/consensus/common" }
sc-service = { version = "0.8.0-rc3", default-features = false, features = ["test-helpers"], path = "../../client/service" }
futures = "0.3.4"
hash-db = "0.15.2"
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../primitives/blockchain" }
sp-state-machine = { version = "0.8.0-rc3", path = "../../primitives/state-machine" }