74 lines
2.0 KiB
TOML
74 lines
2.0 KiB
TOML
[package]
|
|
name = "pallet-bridge-beefy"
|
|
version = "0.1.0"
|
|
description = "Module implementing BEEFY on-chain light client used for bridging consensus of substrate-based chains."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { optional = true, workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Bridge Dependencies
|
|
bp-beefy = { workspace = true }
|
|
bp-runtime = { workspace = true }
|
|
|
|
# Substrate Dependencies
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-std = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
bp-test-utils = { workspace = true, default-features = true }
|
|
mmr-lib = { workspace = true, default-features = true }
|
|
pallet-beefy-mmr = { workspace = true, default-features = true }
|
|
pallet-mmr = { workspace = true, default-features = true }
|
|
rand = { workspace = true, default-features = true }
|
|
sp-consensus-beefy = { workspace = true, default-features = true }
|
|
sp-io = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-beefy/std",
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"tracing/std",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-beefy-mmr/try-runtime",
|
|
"pallet-mmr/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bp-beefy/runtime-benchmarks",
|
|
"bp-runtime/runtime-benchmarks",
|
|
"bp-test-utils/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-beefy-mmr/runtime-benchmarks",
|
|
"pallet-mmr/runtime-benchmarks",
|
|
"sp-consensus-beefy/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|