-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[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" }