24 lines
850 B
TOML
24 lines
850 B
TOML
[package]
|
|
name = "sparse-windows-beacon"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
async-trait = "0.1.86"
|
|
thiserror = "2.0.11"
|
|
tokio = { version = "1.43.0", features = ["fs", "io-std", "io-util", "rt-multi-thread", "sync"] }
|
|
windows = { version = "0.59.0", features = ["Win32_NetworkManagement_IpHelper", "Win32_NetworkManagement_Ndis", "Win32_Networking_WinSock", "Win32_Security", "Win32_System_LibraryLoader", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", "Win32_UI_WindowsAndMessaging"] }
|
|
windows-result = "0.3.0"
|
|
windows-strings = "0.3.0"
|
|
winreg = "0.55"
|
|
|
|
sparse-actions = { version = "2.0.0", path = "../sparse-actions" }
|
|
sparse-beacon = { version = "0.7.0", path = "../sparse-beacon", features = ["openssl"] }
|
|
|
|
[features]
|
|
service = []
|