diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f7f27d8 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,15 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "hive-ag3nt" +version = "0.1.0" + +[[package]] +name = "hive-c0re" +version = "0.1.0" + +[[package]] +name = "hive-sh4re" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..bc13696 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[workspace] +resolver = "3" +members = [ + "hive-ag3nt", + "hive-c0re", + "hive-sh4re", +] + +[workspace.package] +edition = "2024" +version = "0.1.0" diff --git a/hive-ag3nt/Cargo.toml b/hive-ag3nt/Cargo.toml new file mode 100644 index 0000000..c268836 --- /dev/null +++ b/hive-ag3nt/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "hive-ag3nt" +edition.workspace = true +version.workspace = true + +[[bin]] +name = "hive-ag3nt" +path = "src/bin/hive-ag3nt.rs" + +[[bin]] +name = "hive-m1nd" +path = "src/bin/hive-m1nd.rs" diff --git a/hive-ag3nt/src/bin/hive-ag3nt.rs b/hive-ag3nt/src/bin/hive-ag3nt.rs new file mode 100644 index 0000000..03c1e0c --- /dev/null +++ b/hive-ag3nt/src/bin/hive-ag3nt.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hive-ag3nt placeholder"); +} diff --git a/hive-ag3nt/src/bin/hive-m1nd.rs b/hive-ag3nt/src/bin/hive-m1nd.rs new file mode 100644 index 0000000..314550c --- /dev/null +++ b/hive-ag3nt/src/bin/hive-m1nd.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hive-m1nd placeholder"); +} diff --git a/hive-ag3nt/src/lib.rs b/hive-ag3nt/src/lib.rs new file mode 100644 index 0000000..e69de29 diff --git a/hive-c0re/Cargo.toml b/hive-c0re/Cargo.toml new file mode 100644 index 0000000..e0ef81d --- /dev/null +++ b/hive-c0re/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "hive-c0re" +edition.workspace = true +version.workspace = true diff --git a/hive-c0re/src/main.rs b/hive-c0re/src/main.rs new file mode 100644 index 0000000..629d0d0 --- /dev/null +++ b/hive-c0re/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hive-c0re placeholder"); +} diff --git a/hive-sh4re/Cargo.toml b/hive-sh4re/Cargo.toml new file mode 100644 index 0000000..004c5f0 --- /dev/null +++ b/hive-sh4re/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "hive-sh4re" +edition.workspace = true +version.workspace = true diff --git a/hive-sh4re/src/lib.rs b/hive-sh4re/src/lib.rs new file mode 100644 index 0000000..e69de29