mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
2332d6dd04
* Removes `rlp` dependency * Enable warnings about unused crates in the CI * Remove all the unused crates * Make tests working again
33 lines
836 B
TOML
33 lines
836 B
TOML
[package]
|
|
name = "srml-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
hex-literal = { version = "0.1.0", optional = true }
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "2.0", default-features = false }
|
|
substrate-metadata = { path = "../metadata", default-features = false }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
sr-io = { path = "../../core/sr-io", default-features = false }
|
|
mashup = "0.1.7"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
parity-codec-derive = { version = "2.0" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hex-literal",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"sr-io/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"substrate-metadata/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|