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