Files
pezkuwi-subxt/substrate/primitives/inherents/Cargo.toml
T
Demi Obenour 0ab013bddb Bump parking_lot (#4817)
Hopefully this can be merged if the tests pass.
2020-02-04 16:56:50 +01:00

24 lines
643 B
TOML

[package]
name = "sp-inherents"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
parking_lot = { version = "0.10.0", optional = true }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
derive_more = { version = "0.99.2", optional = true }
[features]
default = [ "std" ]
std = [
"parking_lot",
"sp-std/std",
"codec/std",
"sp-core/std",
"derive_more",
]