[package]
edition = "2024"
rust-version = "1.95"
name = "rusty_erasure-cli"
version = "0.4.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rerasure, the rusty_erasure CLI: encode, recover and verify shards, plus the benchmark harness and the always-on kernel-reach census. MIT OR Apache-2.0."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/rusty_erasure-cli"
readme = "README.md"
keywords = [
"erasure-coding",
"reed-solomon",
"raid",
"cli",
"isa-l",
]
categories = [
"command-line-utilities",
"algorithms",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/remade-with-rust/rusty_erasure"
resolver = "2"
[[bin]]
name = "rerasure"
path = "src/main.rs"
[dependencies.rusty_erasure]
version = "0.4.0"
[dependencies.rusty_erasure-alloc]
version = "0.4.0"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]