Files
pezkuwi-subxt/substrate/test-utils/client/Cargo.toml
T
Cecile Tonglet f54614e256 New testing helpers (#6555)
* Initial commit

Forked at: 424d5c722d
Parent branch: origin/master

* Add send_transaction to RpcHandlers

* Extension trait for RpcHandlers

* Revert "Add send_transaction to RpcHandlers"

This reverts commit 03c89e13d404bae3f3123387dd50f026061bca82.

* Add an extension trait for BlockchainEvents

* Update test-utils/client/src/lib.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update test-utils/client/src/lib.rs

* fix

* deps fix

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
2020-07-03 09:49:42 +00:00

32 lines
1.5 KiB
TOML

[package]
name = "substrate-test-client"
version = "2.0.0-rc4"
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-rc4", path = "../../client/api" }
sc-light = { version = "2.0.0-rc4", path = "../../client/light" }
sc-client-db = { version = "0.8.0-rc4", features = ["test-helpers"], path = "../../client/db" }
sp-consensus = { version = "0.8.0-rc4", path = "../../primitives/consensus/common" }
sc-executor = { version = "0.8.0-rc4", path = "../../client/executor" }
sc-consensus = { version = "0.8.0-rc4", path = "../../client/consensus/common" }
sc-service = { version = "0.8.0-rc4", default-features = false, features = ["test-helpers"], path = "../../client/service" }
futures = "0.3.4"
futures01 = { package = "futures", version = "0.1.29" }
hash-db = "0.15.2"
hex = "0.4"
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../primitives/blockchain" }
sp-state-machine = { version = "0.8.0-rc4", path = "../../primitives/state-machine" }