mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
8bc5242c92
* 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
20 lines
465 B
TOML
20 lines
465 B
TOML
[package]
|
|
name = "substrate-metadata"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "2.1", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"serde",
|
|
"serde_derive"
|
|
]
|