-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
67 lines (57 loc) · 1.58 KB
/
Cargo.toml
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
[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.6.1"
authors = ["Omer Ben-Amram <[email protected]>"]
edition = "2021"
[dependencies]
log = { version = "0.4", features = ["release_max_level_debug"] }
encoding = "0.2"
byteorder = "1"
bitflags = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
csv = "1"
thiserror = "1"
num-traits = "0.2"
num-derive = "0.3"
winstructs = "0.3.0"
lru = "0.9.0"
itertools = "0.10"
rand = "0.8"
# `mft_dump` dependencies
clap = { version = "4", optional = true }
anyhow = { version = "1.0", optional = true }
simplelog = { version = "0.12", optional = true }
dialoguer = { version = "0.10", optional = true }
indoc = { version = "2.0", optional = true }
[features]
default = ["mft_dump"]
mft_dump = ["anyhow", "simplelog", "dialoguer", "indoc", "clap"]
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["clock", "serde", "std"]
[dev-dependencies]
criterion = "0.4"
skeptic = "0.13"
assert_cmd = "2.0"
predicates = "2.1"
env_logger = "0.10"
tempfile = "3.2"
# 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.5"
[build-dependencies]
skeptic = "0.13"
[[bin]]
name = "mft_dump"
required-features = ["mft_dump"]
[[bench]]
name = "benchmark"
path = "./src/benches/benchmark.rs"
harness = false