[package]
edition = "2021"
name = "pcf"
version = "0.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference implementation of the Partitioned Container Format (PCF) v1.0"
homepage = "https://github.com/kduma-OSS/Partitioned-Container-Format"
readme = "README.md"
keywords = [
"pcf",
"container",
"binary",
"file-format",
"partitioned",
]
categories = [
"encoding",
"filesystem",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kduma-OSS/Partitioned-Container-Format"
[lib]
name = "pcf"
path = "src/lib.rs"
[[example]]
name = "gen_testvector"
path = "examples/gen_testvector.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "spec_compliance"
path = "tests/spec_compliance.rs"
[dependencies.blake3]
version = "=1.5.5"
[dependencies.cpufeatures]
version = "=0.2.12"
[dependencies.crc]
version = "=3.0.1"
[dependencies.md-5]
version = "0.10"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"