mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 15:11:03 +00:00
2ecffa1cd0
* Refactor sr-api to not depend on client anymore * Fix benches * Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Apply suggestions from code review
23 lines
656 B
TOML
23 lines
656 B
TOML
[package]
|
|
name = "substrate-inherents"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parking_lot = { version = "0.9.0", optional = true }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
|
|
derive_more = { version = "0.15.0", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"parking_lot",
|
|
"rstd/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"derive_more",
|
|
]
|