mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 00:47:55 +00:00
ece0172e31
* Introduce simple blockchain runtime for substrate tests. * Remove bad files. * Add needed wasm binaries. * Refactoring. - Repot files in test-runtime. - Rename troublesome `Joiner::join` to `Joiner::and`. - Rework `Slicable` to dedup code. * More fixes and refactoring * Rebuild substrate test wasm. * Fix merge errors. * Rename the disasterously named `to_vec` to `encode`. Also rename `as_slice_then` to `with_encoded`. * Tests for toy runtime. * Fix doc nit
19 lines
747 B
TOML
19 lines
747 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"
|
|
triehash = { version = "0.1" }
|
|
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" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|