mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
f344e15bf8
* Remove rustc dependency from ed25519 and refactor a little. * Runtime support provides more extensive test-key functionality. * Additional APIs for ed25519 stuff. * Extensive test for test-runtime. * Fixes for the new test key API. * Additional convenience for tests * Take advantage of more convenient API. * Redo formating. * Remove old test identities. * Remove boilerplate, add test. * Refactor out unneeded code. * Clean up algo for determining authorities. * Remove unneeded API. * Make `to_*` consume * Only export keyring when testing * Fix build & warning * Extract Keyring into separate library. * Add tests for Keyring and a trait-based API. * Address grumbles.
47 lines
956 B
TOML
47 lines
956 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/keyring",
|
|
"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",
|
|
]
|