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
37 lines
963 B
TOML
37 lines
963 B
TOML
[package]
|
|
name = "pez-erasure-coding-fuzzer"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
description = "Pezkuwi SDK component: erasure coding fuzzer"
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
honggfuzz = { workspace = true }
|
|
pezkuwi-erasure-coding = { workspace = true, default-features = true }
|
|
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
|
|
[[bin]]
|
|
name = "reconstruct"
|
|
path = "src/reconstruct.rs"
|
|
|
|
[[bin]]
|
|
name = "round_trip"
|
|
path = "src/round_trip.rs"
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezkuwi-erasure-coding/runtime-benchmarks",
|
|
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
]
|
|
std = ["pezkuwi-erasure-coding/std", "pezkuwi-pez-node-primitives/std"]
|