mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
89 lines
2.4 KiB
TOML
89 lines
2.4 KiB
TOML
[package]
|
|
name = "pallet-external-validators-rewards"
|
|
authors = { workspace = true }
|
|
description = "Simple pallet to store external validators rewards."
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
version = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = [ "x86_64-unknown-linux-gnu" ]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
parity-scale-codec = { workspace = true }
|
|
scale-info = { workspace = true, features = [ "derive" ] }
|
|
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-staking = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
frame-benchmarking = { workspace = true }
|
|
|
|
pallet-balances = { workspace = true, optional = true }
|
|
pallet-external-validators = { workspace = true }
|
|
pallet-session = { workspace = true, features = [ "historical" ] }
|
|
runtime-parachains = { workspace = true }
|
|
|
|
snowbridge-core = { workspace = true }
|
|
snowbridge-merkle-tree = { workspace = true }
|
|
snowbridge-outbound-queue-primitives = { workspace = true }
|
|
cumulus-primitives-core = { workspace = true }
|
|
polkadot-primitives = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pallet-timestamp = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"cumulus-primitives-core/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-balances/std",
|
|
"pallet-session/std",
|
|
"pallet-timestamp/std",
|
|
"parity-scale-codec/std",
|
|
"polkadot-primitives/std",
|
|
"runtime-parachains/std",
|
|
"scale-info/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-merkle-tree/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"polkadot-primitives/runtime-benchmarks",
|
|
"runtime-parachains/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-balances?/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"runtime-parachains/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|