mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 01:28:07 +00:00
b94cf078af
* Some initial work on RPC and client * Rephrase as params * More work on traitifying substrate. * Traitify in_mem.rs * traitify client.rs * Make new primitives (mainly traits) build again. * Many (superficial) build fixes throughout. * Fix remaining build issues up to bft interface. * Make bft primitives be generic. * Switch out MisBehaviorReport for generic version. * Merge Hashing into Header. * Update runtime for new generics (with Hashing). * Update demo runtime. * Make runtime compile. * Build fixes for runtime * Remove old modules. * port substrate-bft to use generic substrate types * port client * port substrate-test-runtime * mostly port test-runtime to get compiling for std * Ensure `AccountId` has a `Default`. * Fix type deps. * finish porting * initialize test_runtime from genesis correctly * remove commented code * maybe unsigned signatures * runtimes compile * port over most of network * serialization for generic types * fix comment * remove some unnecessary trait bounds * network compiles * tests compile for sync * fix deserialization * temporarily remove deserialize derives * workarounds for serde issues for deriving deserialization * get demo-runtime compiling on std * port extrinsic-pool * primitives reshuffling * get network compiling again * remove debugging file * runtime tests now passing * port client-db * start to port over substrate-rpc * mostly port over PolkadotApi * test_runtime follows normal conventions * substrate runtime tests pass * deal with inherent extrinsics correctly in polkadot-api * port transaction-pool * port polkadot-consensus * port substrate-rpc * everything compiles * tests compile * fix grumbles * test-runtime uses its own transfer type * switch to master branch of jsonrpc * fix network tests and some warnings * all tests pass locally * [ci-skip] add another comment about issue * remove some curlies
56 lines
2.1 KiB
TOML
56 lines
2.1 KiB
TOML
[package]
|
|
name = "polkadot-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
rustc-hex = "1.0"
|
|
log = { version = "0.3", optional = true }
|
|
serde = { version = "1.0", default_features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
safe-mix = { path = "../../safe-mix", default_features = false}
|
|
polkadot-primitives = { path = "../primitives", default_features = false }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-serializer = { path = "../../substrate/serializer" }
|
|
substrate-runtime-std = { path = "../../substrate/runtime-std" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
substrate-runtime-consensus = { path = "../../substrate/runtime/consensus" }
|
|
substrate-runtime-council = { path = "../../substrate/runtime/council" }
|
|
substrate-runtime-democracy = { path = "../../substrate/runtime/democracy" }
|
|
substrate-runtime-executive = { path = "../../substrate/runtime/executive" }
|
|
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
|
substrate-runtime-session = { path = "../../substrate/runtime/session" }
|
|
substrate-runtime-staking = { path = "../../substrate/runtime/staking" }
|
|
substrate-runtime-system = { path = "../../substrate/runtime/system" }
|
|
substrate-runtime-timestamp = { path = "../../substrate/runtime/timestamp" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.1.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"polkadot-primitives/std",
|
|
"substrate-codec/std",
|
|
"substrate-primitives/std",
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-runtime-support/std",
|
|
"substrate-runtime-consensus/std",
|
|
"substrate-runtime-council/std",
|
|
"substrate-runtime-democracy/std",
|
|
"substrate-runtime-executive/std",
|
|
"substrate-runtime-primitives/std",
|
|
"substrate-runtime-session/std",
|
|
"substrate-runtime-staking/std",
|
|
"substrate-runtime-system/std",
|
|
"substrate-runtime-timestamp/std",
|
|
"serde_derive",
|
|
"serde/std",
|
|
"log",
|
|
"safe-mix/std"
|
|
]
|