mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 11:01:01 +00:00
4cd9e2fe79
* Add unit tests for the equivocation detection loop * clippy * use std::future::pending()
19 lines
603 B
TOML
19 lines
603 B
TOML
[package]
|
|
name = "equivocation-detector"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
description = "Equivocation detector"
|
|
|
|
[dependencies]
|
|
async-std = { version = "1.6.5", features = ["attributes"] }
|
|
async-trait = "0.1"
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
finality-relay = { path = "../finality" }
|
|
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
futures = "0.3.28"
|
|
log = "0.4.20"
|
|
num-traits = "0.2"
|
|
relay-utils = { path = "../utils" }
|