[package]
edition = "2021"
name = "cavs-format"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The .cavs binary container format: streaming writer, hardened reader, Ed25519 signing."
homepage = "https://github.com/orelvis15/cavs-oss"
readme = "README.md"
keywords = [
"cavs",
"format",
"dedup",
"packaging",
"encoding",
]
categories = [
"encoding",
"compression",
]
license = "Apache-2.0"
repository = "https://github.com/orelvis15/cavs-oss"
[lib]
name = "cavs_format"
path = "src/lib.rs"
[[test]]
name = "fuzz_replay"
path = "tests/fuzz_replay.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "signing"
path = "tests/signing.rs"
[dependencies.cavs-hash]
version = "0.6.0"
[dependencies.cavs-store]
version = "0.6.0"
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.thiserror]
version = "2.0"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.tempfile]
version = "3.10"