forensic-mount 0.1.0

Universal forensic FUSE mount framework with ForensicFs trait
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 = "forensic-mount"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal forensic FUSE mount framework with ForensicFs trait"
readme = "README.md"
license = "MIT"

[features]
default = [
    "ext4",
    "ewf",
    "iso",
    "vmdk",
]
ewf = ["dep:ewf"]
ext4 = ["dep:ext4fs"]
iso = ["dep:iso9660-forensic"]
vmdk = ["dep:vmdk"]

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

[[bin]]
name = "4n6mount"
path = "src/main.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.ewf]
version = "0.2.1"
optional = true

[dependencies.ext4fs]
version = "0.1.0"
optional = true
package = "ext4fs-core"

[dependencies.fuser]
version = "0.15"

[dependencies.iso9660-forensic]
version = "0.6.0"
optional = true

[dependencies.libc]
version = "0.2"

[dependencies.md-5]
version = "0.10"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.vmdk]
version = "0.7.0"
optional = true
package = "vmdk-core"

[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"
needless_pass_by_value = "allow"
similar_names = "allow"
too_many_lines = "allow"

[lints.clippy.correctness]
level = "deny"
priority = -1

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

[lints.clippy.suspicious]
level = "deny"
priority = -1

[lints.rust]
unsafe_code = "forbid"