Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml - github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4365df4f720de60c3593185d3b6d719f4949568e (plain)
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
[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.5.3"
authors = ["Omer Ben-Amram <omerbenamram@gmail.com>"]
edition = "2018"

[dependencies]
log = { version = "0.4", features = ["release_max_level_debug"] }
encoding = "0.2"
byteorder = "1.3"
bitflags = "1.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.1"
thiserror = "1.0"
num-traits = "0.2"
num-derive = "0.3"
winstructs = "0.3.0"
lru = "0.4.3"
itertools = "0.8"
rand = "0.7"

# `mft_dump` dependencies
clap = {version = "2.33.0", optional = true}
anyhow = {version = "1.0", optional = true}
simplelog = {version = "0.7.4", optional = true}
dialoguer = {version = "0.5.0", optional = true}
indoc = {version = "0.3.4", optional = true}

[features]
default = ["mft_dump"]
mft_dump = ["anyhow", "simplelog", "dialoguer", "indoc", "clap"]

[dependencies.chrono]
version = "0.4.10"
features = ["serde"]

[dev-dependencies]
criterion = "0.3.0"
skeptic = "0.13.4"
assert_cmd = "0.12.0"
predicates = "1.0.2"
env_logger = "0.7.1"
tempfile = "3.1.0"

# 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.3.0"

[build-dependencies]
skeptic = "0.13.4"

[[bin]]
name = "mft_dump"
required-features = ["mft_dump"]

[[bench]]
name = "benchmark"
path = "./src/benches/benchmark.rs"
harness = false