mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 17:28:00 +00:00
ad2d958248
* Make test-client generic over runtime. * Make sure genesis storage is constructed correctly. * Use prelude in tests. * Add an example of how to use test-client with node/runtime. * Bump version. * Rename test-clients.
28 lines
1018 B
TOML
28 lines
1018 B
TOML
[package]
|
|
description = "Substrate offchain workers"
|
|
name = "substrate-offchain"
|
|
version = "2.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
consensus = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
futures = "0.1.25"
|
|
log = "0.4"
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
|
|
parity-codec = { version = "3.3", features = ["derive"] }
|
|
parking_lot = "0.8.0"
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
tokio = "0.1.7"
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|
|
|
|
[features]
|
|
default = []
|