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
855 B
TOML
36 lines
855 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"]
|