267fcec12d
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
36 lines
927 B
TOML
36 lines
927 B
TOML
[package]
|
|
name = "pez-finality-relay"
|
|
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 = "Finality proofs relay"
|
|
publish = false
|
|
documentation.workspace = true
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-std = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
backoff = { workspace = true }
|
|
futures = { workspace = true }
|
|
num-traits = { workspace = true, default-features = true }
|
|
pezbp-header-pez-chain = { workspace = true, default-features = true }
|
|
relay-utils = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
parking_lot = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezbp-header-pez-chain/runtime-benchmarks",
|
|
"relay-utils/runtime-benchmarks",
|
|
]
|
|
std = ["relay-utils/std", "tracing/std"]
|
|
serde = []
|