mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 05:57: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
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "sr-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
num-traits = { version = "0.2", default-features = false }
|
|
integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
|
|
serde = { version = "1.0", optional = true }
|
|
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 = "../primitives", default-features = false }
|
|
sr-std = { path = "../sr-std", default-features = false }
|
|
sr-io = { path = "../sr-io", default-features = false }
|
|
sr-version = { path = "../sr-version", default-features = false }
|
|
log = {version = "0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"num-traits/std",
|
|
"serde",
|
|
"serde_derive",
|
|
"log",
|
|
"sr-std/std",
|
|
"sr-io/std",
|
|
"sr-version/std",
|
|
"parity-codec/std",
|
|
"substrate-primitives/std",
|
|
]
|
|
api-for-runtime = []
|