mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 04:28:01 +00:00
c7d9c58ce8
- derive_more 0.15 -> 0.99 - strum 0.15 -> 0.16 - slog_derive 0.1 -> 0.2 Signed-off-by: koushiro <koushiro.cqx@gmail.com>
23 lines
650 B
TOML
23 lines
650 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 = "../core", default-features = false }
|
|
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",
|
|
"rstd/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"derive_more",
|
|
]
|