Set up brood subproject

This commit is contained in:
Joscha 2022-09-30 16:01:09 +02:00
parent d29e7257ba
commit 2e2045a74d
4 changed files with 17 additions and 0 deletions

1
brood/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
brood/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "brood"
version = "0.1.0"

6
brood/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "brood"
version = "0.1.0"
edition = "2021"
[dependencies]

3
brood/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}