mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-01 11:17:25 +00:00
a00d0e75fd
* client-api type and move duty roster types to primitives * tuple implementation for slicable * mild cleanup of deserialization code * stubs which handle encoding and decoding themselves * fancier impl_stubs macro * zero-copy slicable API * minimal polkadot-client API * fix WASM API generation * move native environment stuff to substrate executor * fix warnings and grumbles
43 lines
845 B
TOML
43 lines
845 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/serializer",
|
|
"substrate/state-machine",
|
|
]
|
|
exclude = [
|
|
"substrate/executor/wasm",
|
|
"polkadot/runtime/wasm",
|
|
"substrate/pwasm-alloc",
|
|
"substrate/pwasm-libc",
|
|
]
|