27 lines
504 B
TOML
27 lines
504 B
TOML
# ©AngelaMos | 2026
|
|
# Cargo.toml
|
|
|
|
[package]
|
|
name = "axumortem-engine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
goblin = "0.9"
|
|
iced-x86 = { version = "1.21", features = [
|
|
"decoder",
|
|
"intel",
|
|
"nasm",
|
|
"instr_info",
|
|
] }
|
|
yara-x = "0.13"
|
|
petgraph = "0.7"
|
|
memmap2 = "0.9"
|
|
rangemap = "1.5"
|
|
sha2 = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|