2025-11-07 18:02:30 +02:00
|
|
|
[package]
|
|
|
|
|
name = "ghost-core"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
2025-11-21 12:49:42 +02:00
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
yara-scanning = ["yara"]
|
2025-11-21 16:00:51 +02:00
|
|
|
vendored-openssl = ["reqwest/native-tls-vendored"]
|
2025-11-21 12:49:42 +02:00
|
|
|
|
2025-11-07 18:02:30 +02:00
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
log.workspace = true
|
2025-11-08 11:47:46 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
uuid = { version = "1.0", features = ["v4"] }
|
2025-11-08 12:20:53 +02:00
|
|
|
toml = "0.8"
|
2025-11-21 12:49:42 +02:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
yara = { version = "0.28", optional = true }
|
2025-11-21 01:08:49 +02:00
|
|
|
sha2 = "0.10"
|
2025-11-21 01:10:04 +02:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2025-11-07 18:02:30 +02:00
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
|
windows = { version = "0.58", features = [
|
|
|
|
|
"Win32_Foundation",
|
|
|
|
|
"Win32_System_Diagnostics_ToolHelp",
|
2025-11-17 22:02:41 +02:00
|
|
|
"Win32_System_Diagnostics_Debug",
|
2025-11-07 18:02:30 +02:00
|
|
|
"Win32_System_Threading",
|
|
|
|
|
"Win32_System_ProcessStatus",
|
|
|
|
|
"Win32_System_Memory",
|
2025-11-17 22:02:41 +02:00
|
|
|
"Win32_System_LibraryLoader",
|
2025-11-21 14:47:38 +02:00
|
|
|
"Win32_System_Kernel",
|
2025-11-07 18:02:30 +02:00
|
|
|
"Win32_Security",
|
2025-11-20 15:36:28 +02:00
|
|
|
"Win32_UI_WindowsAndMessaging",
|
2025-11-07 18:02:30 +02:00
|
|
|
] }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
libc = "0.2"
|