mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 02:38:02 +00:00
bd066e27a6
* Factor out safe-mix and dispatch * Refactor dispatch into something more modular. * Fix wasm build. * Fix up timestamp * fix warnings. * Borked timestamp example * Fix build * Timestamp as skeleton for traity runtime. * New storage macro. * Dispatch module has traity API. * Move consensus module to new API * Refactoring and outer dispatch * Avoid unnecessary derives. * Abstract the low-level half of system. * nicer outer dispatch syntax. * Make runtime compile again (albeit in a heavily simplified state) * Reworking runtime and the upper levels of system. * Initial reworking of runtime: - Introduced executive module; - Introduced trait primitives module; - Provided an API endpoint. * Expose an additional function in system * Another couple of functions traitified in executive. * another function in executive traitified. * One more function traitified. * Finish traitifying executive! * Traitify session module. * Cleanups and ensure session gets run. * First part of traitification of staking module. * Bit more of staking traitified. * Additional stuff in staking. Fix up session. * Penultimate part of staking module. * Final part of staking (code) * Update demo runtime to include staking. * Final tweaks for staking integration. * Remove old runtime files. * Schedule staking. * Minor fixes * First bits of democracy. * Democracy module integrated. * Fix warning. * Traitify and integrate council module * Council voting. * Runtime binary and tweaks. * Binary update. * Fix `*Type` grumble. * Fix up genesis_map * Remove NonTrivialSlicable * Staking "test externalities" stuff along with refactor. * Add session test externalities constructor * Fixed executor tests. * Make one test in executive module work. * Remove test framework stuff into common module. * Enable other tests in executive * Session tests reinstated, minor refactoring of keyring. * Fix staking tests. * Fix up democracy tests. * First few tests in council. * Council tests reinstated :) * Avoid hardcoding blake2 into Header. * Fix last few tests. * Make all primitives generic. * Fix tests. * Refactor runtime to remove genesismap. * Streamline runtime more with macrofied config. * Clean paths * Fix warning. * Consolidate demo runtime crate. * Remove stale code. * Refactor away dodgy trait. * Add corresponding Aux type. * Fixes * Rename Digesty -> Digest * Rename Headery -> Header * Blocky -> Block * Fix wasm build. * kill warnings * more docs * minor cleanups
55 lines
2.3 KiB
TOML
55 lines
2.3 KiB
TOML
[package]
|
|
name = "demo-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
|
|
safe-mix = { path = "../../../safe-mix", default-features = false }
|
|
substrate-codec = { path = "../../../substrate/codec", default-features = false }
|
|
substrate-primitives = { path = "../../../substrate/primitives", default-features = false }
|
|
substrate-runtime-std = { path = "../../../substrate/runtime-std", default-features = false }
|
|
substrate-runtime-io = { path = "../../../substrate/runtime-io", default-features = false }
|
|
substrate-runtime-support = { path = "../../../substrate/runtime-support", default-features = false }
|
|
substrate-runtime-consensus = { path = "../../../substrate/runtime/consensus", default-features = false }
|
|
substrate-runtime-council = { path = "../../../substrate/runtime/council", default-features = false }
|
|
substrate-runtime-democracy = { path = "../../../substrate/runtime/democracy", default-features = false }
|
|
substrate-runtime-executive = { path = "../../../substrate/runtime/executive", default-features = false }
|
|
substrate-runtime-primitives = { path = "../../../substrate/runtime/primitives", default-features = false }
|
|
substrate-runtime-session = { path = "../../../substrate/runtime/session", default-features = false }
|
|
substrate-runtime-staking = { path = "../../../substrate/runtime/staking", default-features = false }
|
|
substrate-runtime-system = { path = "../../../substrate/runtime/system", default-features = false }
|
|
substrate-runtime-timestamp = { path = "../../../substrate/runtime/timestamp", default-features = false }
|
|
demo-primitives = { path = "../../primitives", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
std = [
|
|
"safe-mix/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",
|
|
"demo-primitives/std",
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
|
|
[workspace]
|
|
members = []
|