mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 06:21:02 +00:00
8f26000e6a
* Use workspace.[authors|edition] * Add repository.workspace = true * Upgrade dependencies to the polkadot-sdk versions * Upgrade async-std version * Update jsonrpsee version * cargo update * use ci-unified image
24 lines
669 B
TOML
24 lines
669 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 = { version = "1.9.0", features = ["attributes"] }
|
|
async-trait = "0.1.79"
|
|
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.30"
|
|
log = { workspace = true }
|
|
num-traits = "0.2"
|
|
relay-utils = { path = "../utils" }
|