[package]
edition = "2021"
rust-version = "1.85"
name = "vmdk-cli"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for inspecting VMDK disk images"
readme = "README.md"
keywords = [
"forensics",
"vmdk",
"disk-image",
"vmware",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/SecurityRonin/vmdk"
[[bin]]
name = "vmdk"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.vmdk]
version = "0.5.1"
[dependencies.vmdk-forensic]
version = "0.5.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.vmdk]
version = "0.5.1"
features = ["test-helpers"]
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1
[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 1
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.items_after_statements]
level = "allow"
priority = 1
[lints.clippy.manual_let_else]
level = "allow"
priority = 1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.similar_names]
level = "allow"
priority = 1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.clippy.too_many_lines]
level = "allow"
priority = 1
[lints.clippy.unwrap_used]
level = "deny"
priority = 0
[lints.rust]
unsafe_code = "forbid"