[package]
edition = "2021"
rust-version = "1.85"
name = "dmg-core"
version = "0.1.0"
authors = ["Albert Hui"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust forensic Apple Disk Image (DMG/UDIF) reader"
homepage = "https://github.com/SecurityRonin/dmg"
documentation = "https://docs.rs/dmg"
readme = false
keywords = [
"forensics",
"dmg",
"disk-image",
"apple",
"udif",
]
categories = [
"parser-implementations",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/dmg"
[lib]
name = "dmg"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "real_images"
path = "tests/real_images.rs"
[dependencies.base64]
version = "0.22"
[dependencies.flate2]
version = "1"
[dependencies.quick-xml]
version = "0.37"
[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
[lints.rust]
unsafe_code = "deny"