Files
kmanc-remote_code_oxidation/rco_utils/Cargo.toml
T
kmanc 6f38bd67fc Antistring crash (#72)
* cargo lock and version bumps

* reduce number of loadlibrary calls to reduce error 126 crashes

* version bump

* forgot to update the tcp rev shell antistring
2022-11-06 16:46:55 -08:00

31 lines
869 B
TOML

[package]
authors = ["Kevin Conley <koins@duck.com>"]
description = "Shared functions for \"Remote Code Execution\"'s (RCO's) binaries"
edition = "2021"
license = "MIT"
name = "rco_utils"
repository = "https://github.com/kmanc/remote_code_oxidation/tree/main/rco_utils"
rust-version = "1.59"
version = "1.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
xor = []
antisand = ["windows", "rand"]
antistring = ["windows"]
[target.'cfg(windows)'.dependencies]
rand.optional = true
rand.version = ">=0.8.5"
windows.optional = true
windows.version = ">=0.41.0"
windows.features = [
"Win32_Foundation",
"Win32_Networking",
"Win32_Networking_WinInet",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_SystemInformation",
"Win32_System_SystemServices" ]