[package] name = "pallet-im-online" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] app-crypto = { package = "sc-application-crypto", path = "../../primitives/application-crypto", default-features = false } authorship = { package = "pallet-authorship", path = "../authorship", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } primitives = { package="sp-core", path = "../../primitives/core", default-features = false } sp-std = { path = "../../primitives/std", default-features = false } serde = { version = "1.0.101", optional = true } session = { package = "pallet-session", path = "../session", default-features = false } runtime-io = { package = "sp-io", path = "../../primitives/sr-io", default-features = false } sp-runtime = { path = "../../primitives/runtime", default-features = false } sp-staking = { path = "../../primitives/sr-staking-primitives", default-features = false } support = { package = "frame-support", path = "../support", default-features = false } system = { package = "frame-system", path = "../system", default-features = false } [features] default = ["std", "session/historical"] std = [ "app-crypto/std", "authorship/std", "codec/std", "primitives/std", "sp-std/std", "serde", "session/std", "runtime-io/std", "sp-runtime/std", "sp-staking/std", "support/std", "system/std", ]