-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (64 loc) · 1.81 KB
/
Cargo.toml
File metadata and controls
74 lines (64 loc) · 1.81 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "mft"
description = "A Fast (and safe) parser for the Windows Master File Table (MFT) format"
homepage = "https://github.com/omerbenamram/mft"
repository = "https://github.com/omerbenamram/mft"
license = "MIT/Apache-2.0"
readme = "README.md"
version = "0.7.0"
authors = ["Omer Ben-Amram <omerbenamram@gmail.com>"]
edition = "2024"
rust-version = "1.90"
[workspace]
members = [
".",
"crates/forensic-image",
"crates/aff",
"crates/ewf",
"crates/ntfs",
"crates/ntfs-explorer-gui",
"crates/dfxml",
]
[dependencies]
log = { version = "0.4", features = ["release_max_level_debug"] }
byteorder = "1"
bitflags = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csv = "1"
thiserror = "2"
num-traits = "0.2"
num-derive = "0.4"
winstructs = "0.3.2"
lru = "0.16.1"
itertools = "0.14"
rand = "0.9"
jiff = { version = "0.2.16", default-features = false, features = ["std", "alloc", "serde", "perf-inline"] }
# `mft_dump` dependencies
clap = { version = "4", optional = true }
anyhow = { version = "1.0", optional = true }
simplelog = { version = "0.12", optional = true }
dialoguer = { version = "0.12", optional = true }
indoc = { version = "2.0", optional = true }
sonic-rs = { version = "0.5.6", optional = true }
utf16-simd = "0.1.0"
[features]
default = ["mft_dump"]
mft_dump = ["anyhow", "simplelog", "dialoguer", "indoc", "clap", "sonic-rs"]
[dev-dependencies]
criterion = "0.7"
doc-comment = "0.3"
assert_cmd = "2.1.1"
predicates = "3.1"
env_logger = "0.11"
tempfile = "3.23"
# rexpect relies on unix process semantics, but it's only used for process interaction tests.
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
rexpect = "0.6"
[[bin]]
name = "mft_dump"
required-features = ["mft_dump"]
[[bench]]
name = "benchmark"
path = "./src/benches/benchmark.rs"
harness = false