mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 06:41:02 +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
21 lines
576 B
TOML
21 lines
576 B
TOML
[package]
|
|
name = "substrate-inherents"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parking_lot = { version = "0.7", optional = true }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
parity-codec = { version = "3.1", default-features = false, features = ["derive"] }
|
|
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"parking_lot",
|
|
"rstd/std",
|
|
"parity-codec/std",
|
|
"runtime_primitives/std",
|
|
]
|