diff --git a/process_hollowing/Cargo.toml b/process_hollowing/Cargo.toml index 6d60d8c..dd6c8ef 100644 --- a/process_hollowing/Cargo.toml +++ b/process_hollowing/Cargo.toml @@ -18,8 +18,8 @@ antistring = ["rco_utils/antistring"] [dependencies] -rco_config = {path = "../rco_config"} -rco_utils = {path = "../rco_utils"} +rco_config = {path = "../rco_config", version = ">=0.2.0"} +rco_utils = {path = "../rco_utils", version = ">=1.0.1"} [target.'cfg(target_os="linux")'.dependencies] nix = ">=0.16" diff --git a/process_migration/Cargo.toml b/process_migration/Cargo.toml index cd88061..4fb2c6f 100644 --- a/process_migration/Cargo.toml +++ b/process_migration/Cargo.toml @@ -17,8 +17,8 @@ antisand = ["rco_utils/antisand"] antistring = ["rco_utils/antistring"] [dependencies] -rco_config = {path = "../rco_config"} -rco_utils = {path = "../rco_utils"} +rco_config = {path = "../rco_config", version = ">=0.2.0"} +rco_utils = {path = "../rco_utils", version = ">=1.0.1"} [target.'cfg(target_os="linux")'.dependencies] nix = ">=0.16" diff --git a/rco_config/Cargo.toml b/rco_config/Cargo.toml index 90b9b3e..2713a47 100644 --- a/rco_config/Cargo.toml +++ b/rco_config/Cargo.toml @@ -1,10 +1,9 @@ [package] -name = "rco_config" -version = "0.2.0" -edition = "2021" authors = ["Kevin Conley "] +description = "Configuration for \"Remote Code Execution\"'s (RCO's) binaries" +edition = "2021" +license = "MIT" +name = "rco_config" +repository = "https://github.com/kmanc/remote_code_oxidation/tree/main/rco_config" rust-version = "1.59" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] +version = "0.2.0" diff --git a/rco_utils/Cargo.toml b/rco_utils/Cargo.toml index 575a33e..28a3bed 100644 --- a/rco_utils/Cargo.toml +++ b/rco_utils/Cargo.toml @@ -1,9 +1,12 @@ [package] -name = "rco_utils" -version = "1.0.1" -edition = "2021" authors = ["Kevin Conley "] +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.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -24,4 +27,4 @@ windows.features = [ "Win32_System_Diagnostics_Debug", "Win32_System_LibraryLoader", "Win32_System_SystemInformation", - "Win32_System_SystemServices" ] \ No newline at end of file + "Win32_System_SystemServices" ] diff --git a/tcp_reverse_shell/Cargo.toml b/tcp_reverse_shell/Cargo.toml index 64e15ff..bb3f610 100644 --- a/tcp_reverse_shell/Cargo.toml +++ b/tcp_reverse_shell/Cargo.toml @@ -16,8 +16,8 @@ antisand = ["rco_utils/antisand"] antistring = ["rco_utils/antistring"] [dependencies] -rco_config = {path = "../rco_config"} -rco_utils = {path = "../rco_utils"} +rco_config = {path = "../rco_config", version = ">=0.2.0"} +rco_utils = {path = "../rco_utils", version = ">=1.0.1"} [target.'cfg(windows)'.dependencies] windows.version = ">=0.40.0"