mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 05:47:58 +00:00
ccc11974ee
* Clean up session key rotation * Fix build * Bump version * Introduce feature to balances. * Move staking locking logic over to central point * ^^^ rest * First part of assimilation * More assimilation * More assimilation * Fix most tests * Fix build * Move Balances to new locking system * :q! * Bump runtime version * Build runtime * Convenience function * Test fix. * Whitespace * Improve type legibility. * Fix comment. * More tests. * More tests. * Bump version * Caps * Whitespace * Whitespace * Remove unneeded function.
30 lines
816 B
TOML
30 lines
816 B
TOML
[package]
|
|
name = "srml-example"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", optional = true }
|
|
parity-codec = { version = "3.1", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
balances = { package = "srml-balances", path = "../balances", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sr-io = { path = "../../core/sr-io" }
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"parity-codec/std",
|
|
"sr-primitives/std",
|
|
"srml-support/std",
|
|
"system/std",
|
|
"balances/std",
|
|
]
|