[package]
edition = "2018"
rust-version = "1.74"
name = "cfb"
version = "0.13.0"
authors = ["Matthew D. Steele <mdsteele@alum.mit.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read/write Compound File Binary (structured storage) files"
readme = "README.md"
keywords = [
"cfb",
"storage",
"structured",
]
license = "MIT"
repository = "https://github.com/mdsteele/rust-cfb"
[lib]
name = "cfb"
path = "src/lib.rs"
[[example]]
name = "cfbtool"
path = "examples/cfbtool.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "large"
path = "tests/large.rs"
[[test]]
name = "malformed"
path = "tests/malformed.rs"
[[test]]
name = "set_len"
path = "tests/set_len.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.fnv]
version = "1.0"
[dependencies.uuid]
version = "1"
[dependencies.web-time]
version = "1"
[dev-dependencies.clap]
version = "4.4"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_pcg]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.time]
version = "0.3"