mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
166f5ae650
* spelling mistakes...LOL * version bumps because those spelling mistakes caused issues with feature flags * Update process migration badge data via Github Action * Update process hollowing badge data via Github Action Co-authored-by: kmanc <kmanc@users.noreply.github.com>
30 lines
730 B
TOML
30 lines
730 B
TOML
[package]
|
|
name = "process_migration"
|
|
version = "1.6.2"
|
|
edition = "2021"
|
|
authors = ["Kevin Conley <koins@duck.com>"]
|
|
rust-version = "1.58"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
xor = ["rco_utils/xor"]
|
|
antisand = ["rco_utils/antisand"]
|
|
|
|
[dependencies]
|
|
rco_config = {path = "../rco_config"}
|
|
rco_utils = {path = "../rco_utils"}
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
nix = ">=0.16"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows.version = ">=0.26.0"
|
|
windows.features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Threading" ]
|