mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 05:38:00 +00:00
0ab013bddb
Hopefully this can be merged if the tests pass.
24 lines
643 B
TOML
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",
|
|
]
|