mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 06:08:03 +00:00
9d23d2a25a
* bump crates to v2.0.0 * fix crate authors * bump node runtime spec_version * remove unused import for no-std
21 lines
576 B
TOML
21 lines
576 B
TOML
[package]
|
|
name = "substrate-inherents"
|
|
version = "2.0.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.3", 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",
|
|
]
|