usn-parser 0.1.4

A Windows utility for NTFS/ReFS to search the MFT & monitoring the changes of USN Journal.
[package]

name = "usn-parser"

version = "0.1.4"

edition = "2024"

authors = ["Fu Wang <wangfu91@hotmail.com>"]

description = "A Windows utility for NTFS/ReFS to search the MFT & monitoring the changes of USN Journal."

repository = "https://github.com/wangfu91/usn-parser-rs"

license = "MIT"

keywords = ["windows", "ntfs", "mft", "usn", "journal"]

categories = ["development-tools", "filesystem"]

readme = "README.md"



[dependencies]

usn-journal-rs = { version = "0.4.1" }

clap = { version = "4.5", features = ["derive"] }

anyhow = "1.0"

wax = "0.6"

chrono = "0.4"



[profile.release]

opt-level = 3      # Optimize for speed.

lto = "fat"        # Enable "fat" Link Time Optimization for better runtime performance.

codegen-units = 1  # Use a single codegen unit for maximum optimization opportunities.

panic = "abort"    # Abort on panic for smaller binaries and potentially faster code.

strip = true       # Strip debug symbols from the binary.



# Patch for usn-journal-rs to use the commit at the HEAD of the default branch on GitHub

[patch.crates-io]

usn-journal-rs = { git = "https://github.com/wangfu91/usn-journal-rs.git" }