Andrew Rioux 7f9ea12b6a
feat: added download and upload commands
redid actions to better support different clients
2025-03-03 20:03:04 -05:00

24 lines
835 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 = { path = "../sparse-actions", features = ["beacon"] }
sparse-beacon = { path = "../sparse-beacon", features = ["openssl"] }
[features]
service = []