mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
28 lines
638 B
TOML
28 lines
638 B
TOML
[package]
|
|
name = "pallet-external-validators-rewards-runtime-api"
|
|
authors = { workspace = true }
|
|
description = "Runtime API definition of pallet-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]
|
|
parity-scale-codec = { workspace = true }
|
|
snowbridge-merkle-tree = { workspace = true }
|
|
sp-api = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"snowbridge-merkle-tree/std",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
]
|