-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.45 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
[package]
name = "chainsaw"
version = "2.14.1"
repository = "https://github.com/WithSecureLabs/chainsaw"
description = "Rapidly Search and Hunt Through Windows Forensic Artefacts"
authors = ["James Dorgan <james@dorgan.io>","Alex Kornitzer <alex.kornitzer@withsecure.com>"]
readme = "README.md"
license = "GPL3"
edition = "2024"
[dependencies]
aho-corasick = "1.0"
anyhow = "1.0"
base64 = "0.22"
bincode = { version = "2.0", features = ["serde"] }
bytesize = "2.0"
chrono = "0.4"
chrono-tz = { version = "0.10", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
crossterm = "0.29"
evtx = { version = "0.11", default-features = false }
hex = "0.4.3"
indicatif = "0.18"
lazy_static = "1.4.0"
libesedb = "0.2.4"
mft = "0.6"
notatin = "1.0"
once_cell = "1.0"
prettytable-rs = "0.10"
quick-xml = { version = "0.39", features = ["serialize"] }
rayon = "1.5"
rand = "0.10"
regex = "1.6"
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
serde_yaml = "0.9"
smallvec = "1.11"
tau-engine = { version = "1.0", features = ["core", "json", "sync"] }
tempfile = "3.2"
terminal_size = "0.4"
uuid = { version = "1.1", features = ["serde", "v4"] }
[dev-dependencies]
assert_cmd = "2.0"
paste = "1.0"
predicates = "3.0"
# Handling abandoned upstreams...
[patch.crates-io]
mft = { git = 'https://github.com/alexkornitzer/mft.git' }
notatin = { git = 'https://github.com/alexkornitzer/notatin.git' }