mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 21:51:06 +00:00
9b885ba092
* Genesis serialization * Custom type for AuthorityId * Merge w master * Fixed a few minor issues * Fixed unmerged file * Renamed tag * Deferred genesis loading * Upated wasm runtime * Minor issues
39 lines
1.4 KiB
TOML
39 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-service"
|
|
version = "0.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
futures = "0.1.17"
|
|
parking_lot = "0.4"
|
|
tokio-timer = "0.1.2"
|
|
error-chain = "0.12"
|
|
lazy_static = "1.0"
|
|
log = "0.3"
|
|
slog = "^2"
|
|
clap = "2.27"
|
|
tokio-core = "0.1.12"
|
|
exit-future = "0.1"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
hex-literal = "0.1"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-consensus = { path = "../consensus" }
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-api = { path = "../api" }
|
|
polkadot-transaction-pool = { path = "../transaction-pool" }
|
|
substrate-keystore = { path = "../../substrate/keystore" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-network = { path = "../../substrate/network" }
|
|
substrate-client = { path = "../../substrate/client" }
|
|
substrate-client-db = { path = "../../substrate/client/db" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-executor = { path = "../../substrate/executor" }
|
|
substrate-state-machine = { path = "../../substrate/state-machine" }
|
|
substrate-telemetry = { path = "../../substrate/telemetry" }
|