mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 00:28:01 +00:00
128d164f2b
* Make use of parity-codec "derive" crate feature * Bump impl_version * Update wasm files and Cargo.lock files * Transferred to parity_codec derive feature for the rest of the crates * Update wasm binaries and lock files * Update core and node wasm binaries
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "srml-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[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 = "3.1", default-features = false, features = ["derive"] }
|
|
srml-metadata = { path = "../metadata", default-features = false }
|
|
sr-std = { path = "../../core/sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents", default-features = false }
|
|
srml-support-procedural = { path = "./procedural" }
|
|
paste = "0.1"
|
|
once_cell = { version = "0.1.6", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hex-literal",
|
|
"once_cell",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"runtime_io/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"sr-primitives/std",
|
|
"srml-metadata/std",
|
|
"inherents/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|