[package]
edition = "2021"
rust-version = "1.85"
name = "vhd"
version = "0.1.0"
authors = ["Albert Hui"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust read-only legacy VHD (Virtual PC) disk image reader"
homepage = "https://github.com/SecurityRonin/vhd"
documentation = "https://docs.rs/vhd"
readme = false
keywords = [
"forensics",
"vhd",
"disk-image",
"windows",
"container",
]
categories = [
"parser-implementations",
"filesystem",
]
license = "MIT"
repository = "https://github.com/SecurityRonin/vhd"
[features]
test-helpers = []
[lib]
name = "vhd"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "real_images"
path = "tests/real_images.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1