Files
pezkuwi-subxt/substrate/node/primitives/Cargo.toml
T
Gav Wood 8bc5242c92 Compact format for block number, nonce, balance (#910)
* Try to make everything compact

* Make `Clone` work

* Fix

* Move contracts and balances over to compact encoding

* Session and timestamp are compact

* Sataking uses compact numbers

* Treasury now compact

* Compact Democracy

* Council is compact

* Fix
2018-10-16 22:47:30 +02:00

30 lines
876 B
TOML

[package]
name = "node-primitives"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
serde = { version = "1.0", default-features = false }
serde_derive = { version = "1.0", optional = true }
parity-codec = { version = "2.1", default-features = false }
parity-codec-derive = { version = "2.1", default-features = false }
substrate-primitives = { path = "../../core/primitives", default-features = false }
sr-std = { path = "../../core/sr-std", default-features = false }
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
[dev-dependencies]
substrate-serializer = { path = "../../core/serializer" }
pretty_assertions = "0.4"
[features]
default = ["std"]
std = [
"parity-codec-derive/std",
"parity-codec/std",
"substrate-primitives/std",
"sr-std/std",
"sr-primitives/std",
"serde_derive",
"serde/std",
]