mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 09:21:05 +00:00
5c842f77bc
- Everything polkadot becomes polkadot-. - Wasm (substrate) executor tests split from Wasm (Polkadot) runtime and built independently.
18 lines
631 B
TOML
18 lines
631 B
TOML
[package]
|
|
name = "polkadot-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot node implementation in Rust."
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1"
|
|
ed25519 = { path = "../ed25519" }
|
|
triehash = { version = "0.1" }
|
|
substrate-codec = { path = "../codec" }
|
|
substrate-runtime-io = { path = "../runtime-io" }
|
|
substrate-state-machine = { path = "../state-machine" }
|
|
substrate-executor = { path = "../executor" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
polkadot-primitives = { path = "../polkadot-primitives", version = "0.1" }
|
|
polkadot-runtime = { path = "../polkadot-runtime" }
|