mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 10:01:17 +00:00
7657a2326f
* Introduce treasury and document * Revert bad changes * More reversions * Add example crate - Remove HasPublicAux - Rename Concrete -> Runtime * Actually commit stuff * Changes * Propagate block number in finalise. * Fix and build example * Fixes. * Fix compilation for treasury. * Fix the treasury test * Tests * Fix. * Fix tests * Fix a few grumbles * Fixes * Fix grumbles
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "substrate-runtime-treasury"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", default_features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
substrate-runtime-std = { path = "../../runtime-std", default_features = false }
|
|
substrate-runtime-io = { path = "../../runtime-io", default_features = false }
|
|
substrate-runtime-support = { path = "../../runtime-support", default_features = false }
|
|
substrate-runtime-primitives = { path = "../primitives", default_features = false }
|
|
substrate-codec = { path = "../../codec", default_features = false }
|
|
substrate-codec-derive = { path = "../../codec/derive", default_features = false }
|
|
substrate-primitives = { path = "../../primitives", default_features = false }
|
|
substrate-runtime-system = { path = "../system", default_features = false }
|
|
substrate-runtime-balances = { path = "../balances", default_features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-runtime-support/std",
|
|
"substrate-runtime-primitives/std",
|
|
"substrate-runtime-balances/std",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"substrate-codec/std",
|
|
"substrate-codec-derive/std",
|
|
"substrate-primitives/std",
|
|
"substrate-runtime-system/std",
|
|
]
|