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
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[package]
|
|
name = "pez-revive-dev-node"
|
|
description = "A development Bizinikiwi-based Bizinikiwi node, equipped with pezpallet-revive."
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
build = "build.rs"
|
|
documentation = "https://docs.rs/pez-revive-dev-node"
|
|
license = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { features = ["derive"], workspace = true }
|
|
docify = { workspace = true }
|
|
futures = { features = ["thread-pool"], workspace = true }
|
|
futures-timer = { workspace = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
|
|
# Direct dependency needed (not through umbrella due to macro visibility issues)
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
pez-revive-dev-runtime = { workspace = true }
|
|
pezkuwi-sdk = { workspace = true, features = [
|
|
"experimental",
|
|
"node",
|
|
"pezsp-block-builder",
|
|
"pezsp-core",
|
|
"pezsp-genesis-builder",
|
|
"pezsp-io",
|
|
"pezsp-timestamp",
|
|
] }
|
|
|
|
[build-dependencies]
|
|
pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pez-revive-dev-runtime/std",
|
|
"pezkuwi-sdk/std",
|
|
"pezsp-runtime/std"
|
|
]
|
|
runtime-benchmarks = [
|
|
"pez-revive-dev-runtime/runtime-benchmarks",
|
|
"pezkuwi-sdk/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks"
|
|
]
|