udf-forensic 0.2.4

Forensic-grade, from-scratch UDF (ECMA-167 / OSTA) reader and tamper analyzer — volume recognition, partition maps (physical/virtual/sparable/metadata), File Entry and directory (FID) traversal, file data, plus graded findings (tag CRC/checksum, orphan File Entries, slack, file-after-volume) over any Read + Seek source
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "udf-forensic"
version = "0.2.4"
build = false
exclude = ["tests/data/*.img"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic-grade, from-scratch UDF (ECMA-167 / OSTA) reader and tamper analyzer — volume recognition, partition maps (physical/virtual/sparable/metadata), File Entry and directory (FID) traversal, file data, plus graded findings (tag CRC/checksum, orphan File Entries, slack, file-after-volume) over any Read + Seek source"
homepage = "https://github.com/SecurityRonin/udf-forensic"
documentation = "https://docs.rs/udf-forensic"
readme = "README.md"
keywords = [
    "forensics",
    "udf",
    "ecma-167",
    "filesystem",
    "dfir",
]
categories = [
    "parser-implementations",
    "filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/udf-forensic"

[features]
serde = [
    "dep:serde",
    "forensicnomicon/serde",
]
vfs = ["dep:forensic-vfs"]

[lib]
name = "udf_forensic"
path = "src/lib.rs"

[[test]]
name = "findings"
path = "tests/findings.rs"

[dependencies.forensic-vfs]
version = "0.7"
optional = true

[dependencies.forensicnomicon]
version = "1"

[dependencies.safe-read]
version = "0.1"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[lints.clippy.all]
level = "warn"
priority = -1

[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.expect_used]
level = "deny"
priority = 0

[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"