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
65 lines
1.6 KiB
TOML
65 lines
1.6 KiB
TOML
[package]
|
|
name = "pezsp-consensus-sassafras"
|
|
version = "0.3.4-dev"
|
|
authors.workspace = true
|
|
description = "Primitives for Sassafras consensus"
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository = "https://github.com/pezkuwichain/pezkuwi-sdk/"
|
|
documentation.workspace = true
|
|
readme = "README.md"
|
|
publish = false
|
|
|
|
[package.metadata.pezkuwi-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
pezsp-api = { workspace = true }
|
|
pezsp-application-crypto = { features = [
|
|
"bandersnatch-experimental",
|
|
], workspace = true }
|
|
pezsp-consensus-slots = { workspace = true }
|
|
pezsp-core = { features = ["bandersnatch-experimental"], workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { features = ["derive"], optional = true, workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezsp-api/std",
|
|
"pezsp-application-crypto/std",
|
|
"pezsp-consensus-slots/std",
|
|
"pezsp-core/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
]
|
|
|
|
# Serde support without relying on std features.
|
|
serde = [
|
|
"codec/serde",
|
|
"dep:serde",
|
|
"pezsp-application-crypto/serde",
|
|
"pezsp-consensus-slots/serde",
|
|
"pezsp-core/serde",
|
|
"pezsp-runtime/serde",
|
|
"scale-info/serde",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-application-crypto/runtime-benchmarks",
|
|
"pezsp-consensus-slots/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|