Files
pezkuwi-sdk/pezbridges/relays/teyrchains/Cargo.toml
T
pezkuwichain 267fcec12d 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

39 lines
1.0 KiB
TOML

[package]
name = "teyrchains-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
publish = false
description = "Pezkuwi SDK component: teyrchains relay"
documentation.workspace = true
homepage = { workspace = true }
[lints]
workspace = true
[dependencies]
async-std = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
relay-utils = { workspace = true }
tracing = { workspace = true }
# Bridge dependencies
pezbp-pezkuwi-core = { workspace = true, default-features = true }
relay-bizinikiwi-client = { workspace = true }
[dev-dependencies]
pezsp-core = { workspace = true, default-features = true }
relay-bizinikiwi-client = { features = ["test-helpers"], workspace = true }
[features]
runtime-benchmarks = [
"pezbp-pezkuwi-core/runtime-benchmarks",
"relay-bizinikiwi-client/runtime-benchmarks",
"relay-utils/runtime-benchmarks",
]
std = ["relay-bizinikiwi-client/std", "relay-utils/std", "tracing/std"]
serde = []