A little more cargo cleanup that I didn't know about and hence missed (#63)

This commit is contained in:
kmanc
2022-09-17 13:58:52 -07:00
committed by GitHub
parent d77ab5f03b
commit 01b3c8f9db
5 changed files with 19 additions and 17 deletions
+2 -2
View File
@@ -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"
+2 -2
View File
@@ -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"
+6 -7
View File
@@ -1,10 +1,9 @@
[package]
name = "rco_config"
version = "0.2.0"
edition = "2021"
authors = ["Kevin Conley <koins@duck.com>"]
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"
+7 -4
View File
@@ -1,9 +1,12 @@
[package]
name = "rco_utils"
version = "1.0.1"
edition = "2021"
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.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" ]
"Win32_System_SystemServices" ]
+2 -2
View File
@@ -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"