mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 00:08:00 +00:00
dec6e82387
* 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
46 lines
934 B
TOML
46 lines
934 B
TOML
[[bin]]
|
|
name = "polkadot"
|
|
path = "polkadot/src/main.rs"
|
|
|
|
[package]
|
|
name = "polkadot"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.11"
|
|
polkadot-cli = { path = "polkadot/cli" }
|
|
|
|
[workspace]
|
|
members = [
|
|
"polkadot/api",
|
|
"polkadot/candidate-agreement",
|
|
"polkadot/cli",
|
|
"polkadot/collator",
|
|
"polkadot/executor",
|
|
"polkadot/primitives",
|
|
"polkadot/runtime",
|
|
"polkadot/validator",
|
|
"substrate/client",
|
|
"substrate/codec",
|
|
"substrate/environmental",
|
|
"substrate/executor",
|
|
"substrate/network",
|
|
"substrate/primitives",
|
|
"substrate/rpc-servers",
|
|
"substrate/rpc",
|
|
"substrate/runtime-io",
|
|
"substrate/runtime-std",
|
|
"substrate/runtime-support",
|
|
"substrate/serializer",
|
|
"substrate/state-machine",
|
|
"substrate/test-runtime",
|
|
]
|
|
exclude = [
|
|
"polkadot/runtime/wasm",
|
|
"substrate/executor/wasm",
|
|
"substrate/pwasm-alloc",
|
|
"substrate/pwasm-libc",
|
|
"substrate/test-runtime/wasm",
|
|
]
|