Files
pezkuwi-subxt/substrate/srml/im-online/Cargo.toml
T
André Silva 3cbc28ab59 im-online: account for block authorship (#3973)
* im-online: account for block authorship

* im-online: add test for block authorship onlineness

* im-online: cleanup

* im-online: fix test
2019-10-31 11:11:11 +01:00

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",
]