forked from forensicmatt/RustyUsn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1017 Bytes
/
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
[package]
name = "rusty_usn"
description = "A fast and cross platform USN Parser written in Rust that outputs to JSONL"
version = "1.5.1"
authors = ["Matthew Seyer"]
edition = "2018"
homepage = "https://github.com/forensicmatt/RustyUsn"
repository = "https://github.com/forensicmatt/RustyUsn"
license = "Apache-2.0"
readme = "README.md"
[dependencies]
clap = "2"
log = "0.4"
hex = "0.3"
fern = "0.5"
time = "0.1"
chrono = "0.4"
regex = "1"
lazy_static = "1.3.0"
bitflags = "1.0"
encoding = "0.2"
serde = "1.0"
serde_json = "1.0"
byteorder = "1.3.1"
winstructs = "0.3.0"
lru = "0.1.17"
rayon = {version = "1.0.3", optional = true}
[dependencies.mft]
version = "0.5"
[dependencies.winapi]
version = "0.3"
features = [
"winioctl",
"ioapiset"
]
optional = true
[features]
default = ["multithreading"]
multithreading = ["rayon"]
windows = ["winapi"]
[[bin]]
name = "rusty_usn"
[[bin]]
name = "listen_usn"
required-features = ["windows"]
[[example]]
name = "print_live_folder_mapping"
required-features = ["windows"]