mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
e2bb429711
* core/primitives * sr-primitives * sr-primitives * srml-treasury * substrate-executor * substrate-keystore * network-libp2p * substrate-service * srml-system * substrate-rpc * sr-version * substrate-telemetry * substrate-test-runtime * substrate-transaction-pool * node-template-runtime * node-primitives * srml-consensus * srml-contract * srml-democracy * srml-finality-tracker * srml-grandpa * srml-metadata * srml-support * Clean * Update locks
37 lines
1.5 KiB
TOML
37 lines
1.5 KiB
TOML
[package]
|
|
name = "substrate-service"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.1.17"
|
|
parking_lot = "0.7.1"
|
|
error-chain = "0.12"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
slog = {version = "^2", features = ["nested-values"]}
|
|
tokio = "0.1.7"
|
|
exit-future = "0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
target_info = "0.1"
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents" }
|
|
keystore = { package = "substrate-keystore", path = "../../core/keystore" }
|
|
sr-io = { path = "../../core/sr-io" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
client_db = { package = "substrate-client-db", path = "../../core/client/db" }
|
|
parity-codec = "3.3"
|
|
substrate-executor = { path = "../../core/executor" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
rpc = { package = "substrate-rpc-servers", path = "../../core/rpc-servers" }
|
|
tel = { package = "substrate-telemetry", path = "../../core/telemetry" }
|
|
offchain = { package = "substrate-offchain", path = "../../core/offchain" }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-client = { path = "../test-client" }
|