mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
eaa0ab014a
* Drop import_lock from client, move it into backend, impl default version via static mutex * still need to allow depcretion because of client.backend * additional docs * Remove default impl of get_import_lock, impl on instances * Bump parking_lot to 0.8.0 accross the board
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "srml-finality-tracker"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
parity-codec = { version = "3.3", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
srml-system = { path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
sr-io = { path = "../../core/sr-io", default-features = false }
|
|
lazy_static = "1.0"
|
|
parking_lot = "0.8.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"rstd/std",
|
|
"srml-support/std",
|
|
"primitives/std",
|
|
"srml-system/std",
|
|
"inherents/std",
|
|
]
|