ea341084f0
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
38 lines
859 B
TOML
38 lines
859 B
TOML
[package]
|
|
name = "pezkuwi-omni-node"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
build = "build.rs"
|
|
description = "Generic binary that can run a teyrchain node with u32 block number and Aura consensus"
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
color-eyre = { workspace = true }
|
|
|
|
# Local
|
|
pezkuwi-omni-node-lib = { workspace = true, features = [
|
|
"pezkuwichain-native",
|
|
"zagros-native",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
bizinikiwi-build-script-utils = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = ["pezkuwi-omni-node-lib/runtime-benchmarks"]
|
|
try-runtime = ["pezkuwi-omni-node-lib/try-runtime"]
|
|
std = [
|
|
"pezkuwi-omni-node-lib/std",
|
|
]
|