mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 12:51:05 +00:00
3cbc28ab59
* im-online: account for block authorship * im-online: add test for block authorship onlineness * im-online: cleanup * im-online: fix test
40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "srml-im-online"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../core/application-crypto", default-features = false }
|
|
authorship = { package = "srml-authorship", path = "../authorship", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
primitives = { package="substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true }
|
|
session = { package = "srml-session", path = "../session", default-features = false }
|
|
runtime-io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default-features = false }
|
|
sr-staking-primitives = { path = "../../core/sr-staking-primitives", default-features = false }
|
|
support = { package = "srml-support", path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
offchain = { package = "substrate-offchain", path = "../../core/offchain" }
|
|
|
|
[features]
|
|
default = ["std", "session/historical"]
|
|
std = [
|
|
"app-crypto/std",
|
|
"authorship/std",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"rstd/std",
|
|
"serde",
|
|
"session/std",
|
|
"runtime-io/std",
|
|
"sr-primitives/std",
|
|
"sr-staking-primitives/std",
|
|
"support/std",
|
|
"system/std",
|
|
]
|