mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 13:57: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.
31 lines
947 B
TOML
31 lines
947 B
TOML
[package]
|
|
name = "node-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "3.1", default-features = false }
|
|
parity-codec-derive = { version = "3.1", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { path = "../../core/serializer" }
|
|
pretty_assertions = "0.5"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec-derive/std",
|
|
"parity-codec/std",
|
|
"primitives/std",
|
|
"rstd/std",
|
|
"runtime_primitives/std",
|
|
"serde_derive",
|
|
"serde",
|
|
]
|