30 lines
793 B
TOML
30 lines
793 B
TOML
[package]
|
|
name = "equivocation-detector"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
description = "Equivocation detector"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-std = { features = ["attributes"], workspace = true }
|
|
async-trait = { workspace = true }
|
|
bp-header-chain = { workspace = true, default-features = true }
|
|
finality-relay = { workspace = true }
|
|
futures = { workspace = true }
|
|
num-traits = { workspace = true, default-features = true }
|
|
relay-utils = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bp-header-chain/runtime-benchmarks",
|
|
"finality-relay/runtime-benchmarks",
|
|
"relay-utils/runtime-benchmarks",
|
|
]
|