cargo workspace skeleton
This commit is contained in:
parent
ae7c5e18c6
commit
6686df93a5
10 changed files with 55 additions and 0 deletions
12
hive-ag3nt/Cargo.toml
Normal file
12
hive-ag3nt/Cargo.toml
Normal 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"
|
||||
3
hive-ag3nt/src/bin/hive-ag3nt.rs
Normal file
3
hive-ag3nt/src/bin/hive-ag3nt.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("hive-ag3nt placeholder");
|
||||
}
|
||||
3
hive-ag3nt/src/bin/hive-m1nd.rs
Normal file
3
hive-ag3nt/src/bin/hive-m1nd.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("hive-m1nd placeholder");
|
||||
}
|
||||
0
hive-ag3nt/src/lib.rs
Normal file
0
hive-ag3nt/src/lib.rs
Normal file
Loading…
Add table
Add a link
Reference in a new issue