mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 13:38:11 +00:00
fea750511e
* Updating substrate-demo * Consenus fixes * Reverted toolchain change * Adjusted timeout formula * Simplfied proposal creation * Fixed tests * Fixed a few small issues * 2017->2018 * Style * More style * Renamed demo executable to substrate * Style * Fixed compilation after merge * Style
30 lines
1.4 KiB
TOML
30 lines
1.4 KiB
TOML
[package]
|
|
name = "demo-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate Demo node implementation in Rust."
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1"
|
|
triehash = "0.2"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-state-machine = { path = "../../substrate/state-machine" }
|
|
substrate-executor = { path = "../../substrate/executor" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
demo-primitives = { path = "../primitives" }
|
|
demo-runtime = { path = "../runtime" }
|
|
|
|
[dev-dependencies]
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
|
substrate-runtime-balances = { path = "../../substrate/runtime/balances" }
|
|
substrate-runtime-session = { path = "../../substrate/runtime/session" }
|
|
substrate-runtime-staking = { path = "../../substrate/runtime/staking" }
|
|
substrate-runtime-system = { path = "../../substrate/runtime/system" }
|
|
substrate-runtime-consensus = { path = "../../substrate/runtime/consensus" }
|
|
substrate-runtime-timestamp = { path = "../../substrate/runtime/timestamp" }
|
|
substrate-runtime-treasury = { path = "../../substrate/runtime/treasury" }
|