mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
7e3b2d464a
* use parity-codec-derive from parity-codec everywhere * codec v3.2 -> v3.3 * skip phantom when deriving event * fix decl_module call * update impl version of node + builds
28 lines
1.0 KiB
TOML
28 lines
1.0 KiB
TOML
[package]
|
|
description = "Substrate offchain workers"
|
|
name = "substrate-offchain"
|
|
version = "0.1.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"
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents" }
|
|
log = "0.4"
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
|
|
parity-codec = { version = "3.3", features = ["derive"] }
|
|
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-client", path = "../../core/test-client" }
|
|
|
|
[features]
|
|
default = []
|