62674ce919
- Add pezkuwi-subxt crates to vendor/pezkuwi-subxt - Add pezkuwi-zombienet-sdk crates to vendor/pezkuwi-zombienet-sdk - Convert git dependencies to path dependencies - Add vendor crates to workspace members - Remove test/example crates from vendor (not needed for SDK) - Fix feature propagation issues detected by zepter - Fix workspace inheritance for internal dependencies - All 606 crates now in workspace - All 6919 internal dependency links verified correct - No git dependencies remaining
58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[package]
|
|
name = "teyrchain-template-node"
|
|
description = "A teyrchain node template built with Bizinikiwi and Pezcumulus, part of Pezkuwi Sdk."
|
|
version = "0.0.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
build = "build.rs"
|
|
documentation = "https://docs.rs/teyrchain-template-node"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { features = ["derive"], workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
color-print = { workspace = true }
|
|
docify = { workspace = true }
|
|
futures = { workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
|
|
# Direct dependency needed (not through umbrella due to macro visibility issues)
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
pezkuwi-sdk = { workspace = true, features = ["node", "pezkuwi-primitives", "pezsp-keystore", "pezsp-timestamp"] }
|
|
|
|
teyrchain-template-runtime = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
|
|
[build-dependencies]
|
|
pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"log/std",
|
|
"pezkuwi-sdk/std",
|
|
"pezsp-runtime/std",
|
|
"teyrchain-template-runtime/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezkuwi-sdk/runtime-benchmarks",
|
|
"teyrchain-template-runtime/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks"
|
|
]
|
|
try-runtime = [
|
|
"pezkuwi-sdk/try-runtime",
|
|
"teyrchain-template-runtime/try-runtime",
|
|
"pezsp-runtime/try-runtime"
|
|
]
|