-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.01 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
[package]
name = "malunpacker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "malanalyze"
path = "src/malanalyze.rs"
[dependencies]
icaparse = "0.2.0"
tokio = { version = "1.37.0", features = ["fs", "io-util", "rt-multi-thread", "macros", "time", "sync", "net"] }
yara = { version = "0.26.0", features = ["vendored"]}
sevenz-rust = { version = "0.6.0", features = ["aes256", "zstd", "bzip2"]}
tempfile = "3.10.1"
simple_logger = "4.3.3"
log = "0.4.21"
tracing = "0.1.40"
thiserror = "1.0.58"
tracing-subscriber = {version= "0.3.18", features=["env-filter"]}
zip = { version = "2.2.0" }
magic = "0.16.2"
mail-parser = "0.9.3"
libcdio-sys = { version = "0.5.0", features = ["cdio", "iso9660"]}
toml = "0.8.12"
serde = { version = "1.0.198", features = ["derive"]}
rust-bert = { version = "0.22.0" }
anyhow = "1.0.82"
sentry = "0.32.3"
regex = "1.10.4"
unrar = "0.5.3"
bzip2 = "0.4.4"
tar = "0.4.41"
sha256 = "1.5.0"
reqwest = "0.12.8"