ntfs-reader 0.4.5

Read MFT and USN journal
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"
name = "ntfs-reader"
version = "0.4.5"
authors = ["Matteo Bernacchia <dev@kikijiki.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read MFT and USN journal"
readme = "README.md"
keywords = [
    "filesystem",
    "ntfs",
]
categories = ["filesystem"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kikijiki/ntfs-reader"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = []

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

[[example]]
name = "read_journal"
path = "examples/read_journal.rs"

[[example]]
name = "read_mft"
path = "examples/read_mft.rs"

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

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

[[bench]]
name = "mft_benchmark"
path = "benches/mft_benchmark.rs"
harness = false

[dependencies.binread]
version = "2.2"
features = ["const_generics"]

[dependencies.thiserror]
version = "2.0"

[dependencies.time]
version = "0.3"

[dependencies.tracing]
version = "0.1"

[dependencies.windows]
version = "0.62"
features = [
    "Win32_Foundation",
    "Win32_System_Time",
    "Win32_System_SystemInformation",
    "Win32_Security",
    "Win32_System_IO",
    "Win32_Storage_FileSystem",
    "Win32_System_Ioctl",
    "Win32_System_Threading",
]

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.tracing-subscriber]
version = "0.3"