-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
74 lines (62 loc) · 1.5 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
68
69
70
71
72
73
74
[package]
name = "dionysos"
version = "1.2.6"
edition = "2018"
description = "Scanner for various IoCs"
homepage = "https://github.com/dfir-dd/dionysos"
repository = "https://github.com/dfir-dd/dionysos"
license = "GPL-3.0"
authors = ["Jan Starke <[email protected]>"]
categories = ["command-line-utilities", "filesystem"]
keywords = ["cli", "forensics", "security"]
rust-version = "1.63"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libdionysos"
path = "src/lib.rs"
[[bin]]
name = "dionysos"
path = "src/main.rs"
[features]
default = ["scan_evtx", "scan_reg"]
scan_evtx = ["evtx"]
scan_reg = ["nt_hive2", "binread"]
[package.metadata.deb]
license-file = "LICENSE"
depends = "libyara-dev (>=4.2.1), file, libclang-dev"
[dependencies]
anyhow = "1.0"
clap = {version="4", features=["derive", "wrap_help"]}
clap-verbosity-flag = {version="2.0.0"}
simplelog = "0.12"
log = "0.4"
walkdir = "2"
yara = "0.17"
zip = "0.6"
regex = "1.5"
indicatif = "0.17.0-rc.11"
filemagic = "0"
duplicate = "0.4"
file-owner = "0.1"
num_cpus = "1.13"
rayon = "1.6"
scoped-tls = "1.0"
maplit = "1"
flate2 = "1"
bzip2 = "0.4.3"
xz = "0.1"
serde = "1.0"
serde_json = "1.0"
csv = "1.1"
hex = "0.4"
memmap = "0.7"
md-5 = "0.10"
sha-1 = "0.10"
sha2 = "0.10"
evtx = {version="0.8", optional=true, features=["multithreading"]}
nt_hive2 = {version="3.0", optional=true, features=[]}
binread = {version="2", optional=true}
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates-core = "1"