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
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "pezkuwi-erasure-coding"
|
|
version = "7.0.0"
|
|
description = "Erasure coding used for Pezkuwi's availability system"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive", "std"], workspace = true }
|
|
novelpoly = { workspace = true }
|
|
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-trie = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { features = ["cargo_bench_support"], workspace = true }
|
|
quickcheck = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "scaling_with_validators"
|
|
harness = false
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
]
|
|
std = ["codec/std", "pezkuwi-pez-node-primitives/std"]
|
|
serde = []
|