Files
pezkuwi-sdk/pezbridges/relays/equivocation/Cargo.toml
T
pezkuwichain 78095d125e fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

33 lines
949 B
TOML

[package]
name = "pez-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
documentation.workspace = true
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
async-std = { features = ["attributes"], workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
num-traits = { workspace = true, default-features = true }
pez-finality-relay = { workspace = true }
pezbp-header-pez-chain = { workspace = true, default-features = true }
relay-utils = { workspace = true }
tracing = { workspace = true }
[features]
runtime-benchmarks = [
"pez-finality-relay/runtime-benchmarks",
"pezbp-header-pez-chain/runtime-benchmarks",
"relay-utils/runtime-benchmarks",
]
std = ["pez-finality-relay/std", "relay-utils/std", "tracing/std"]