ntfs-reader 0.4.6

Read MFT and USN journal
Documentation
[package]
name = "ntfs-reader"
version = "0.4.6"
authors = ["Matteo Bernacchia <dev@kikijiki.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "Read MFT and USN journal"
repository = "https://github.com/kikijiki/ntfs-reader"
keywords = ["filesystem", "ntfs"]
categories = ["filesystem"]

[dependencies]
thiserror = "2.0"
binread = { version = "2.2", features = ["const_generics"] }
time = "0.3"
tracing = "0.1"

# For the journal
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]
tracing-subscriber = "0.3"
criterion = "0.8"

[[bench]]
name = "mft_benchmark"
harness = false

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