mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 11:57:56 +00:00
79feb23a22
* refactor sr_primitives. * Fix try build error. * Line-width * Ui test. * Final fixes. * Fix build again. * bring back ui test. * Fix unsigned import. * Another ui fix. * Also refactor substrate-primitives * Fix benchmarks. * Fix doc test. * fix doc tests
29 lines
1.0 KiB
TOML
29 lines
1.0 KiB
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" }
|
|
futures = "0.1.25"
|
|
log = "0.4"
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
|
|
parity-codec = { version = "4.1.1", features = ["derive"] }
|
|
parking_lot = "0.8.0"
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
client-db = { package = "substrate-client-db", path = "../../core/client/db/", default-features = true }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|
|
tokio = "0.1.7"
|
|
|
|
[features]
|
|
default = []
|