[package] name = "cumulus-pallet-aura-ext" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" description = "AURA consensus extension pallet for parachains" [dependencies] # Substrate dependencies frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Other Dependencies codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"]} scale-info = { version = "1.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } [dev-dependencies] cumulus-pallet-parachain-system = { path = "../parachain-system" } [features] default = [ "std" ] std = [ "codec/std", "scale-info/std", "serde", "frame-support/std", "sp-runtime/std", "sp-std/std", "frame-system/std", "frame-executive/std", "pallet-aura/std", "sp-consensus-aura/std", "sp-application-crypto/std", ]