cargo workspace skeleton

This commit is contained in:
müde 2026-05-14 20:24:55 +02:00
parent ae7c5e18c6
commit 6686df93a5
10 changed files with 55 additions and 0 deletions

15
Cargo.lock generated Normal file
View file

@ -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"

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[workspace]
resolver = "3"
members = [
"hive-ag3nt",
"hive-c0re",
"hive-sh4re",
]
[workspace.package]
edition = "2024"
version = "0.1.0"

12
hive-ag3nt/Cargo.toml Normal file
View file

@ -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"

View file

@ -0,0 +1,3 @@
fn main() {
println!("hive-ag3nt placeholder");
}

View file

@ -0,0 +1,3 @@
fn main() {
println!("hive-m1nd placeholder");
}

0
hive-ag3nt/src/lib.rs Normal file
View file

4
hive-c0re/Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[package]
name = "hive-c0re"
edition.workspace = true
version.workspace = true

3
hive-c0re/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("hive-c0re placeholder");
}

4
hive-sh4re/Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[package]
name = "hive-sh4re"
edition.workspace = true
version.workspace = true

0
hive-sh4re/src/lib.rs Normal file
View file