57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
name = "pallet-aura"
|
|
version = "27.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME AURA consensus pallet"
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive", "max-encoded-len"], workspace = true }
|
|
log = { version = "0.4.22", default-features = false }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
pallet-session = { workspace = true }
|
|
pallet-timestamp = { workspace = true }
|
|
sp-application-crypto = { workspace = true }
|
|
sp-consensus-aura = { workspace = true }
|
|
sp-staking = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
primitive-types = { workspace = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-timestamp/std",
|
|
"scale-info/std",
|
|
"sp-application-crypto/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|