mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 23:47:56 +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
22 lines
582 B
TOML
22 lines
582 B
TOML
[package]
|
|
name = "sr-api"
|
|
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 }
|
|
sr-std = { path = "../sr-std", default-features = false }
|
|
sr-primitives = { path = "../sr-primitives", default-features = false }
|
|
sr-version = { path = "../sr-version", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sr-std/std",
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"sr-primitives/std",
|
|
"sr-version/std",
|
|
]
|