]> git.taranathan.com Git - cart.git/commitdiff
roomy
authorTaran Nathan <moogoesmeow123@gmail.com>
Thu, 21 May 2026 20:48:03 +0000 (13:48 -0700)
committerTaran Nathan <moogoesmeow123@gmail.com>
Thu, 21 May 2026 20:48:12 +0000 (13:48 -0700)
Cargo.toml
roomy/Cargo.toml [new file with mode: 0644]
roomy/src/main.rs [new file with mode: 0644]

index e0fc46c340c6f30ac1164e9b27e5090ab2131808..6eae5b7e2280a347c1031fb87a7b2b9f787234e3 100644 (file)
@@ -2,5 +2,6 @@
 members = [
     "generator",
     "structs",
+    "roomy",
 ]
 resolver = "3"
diff --git a/roomy/Cargo.toml b/roomy/Cargo.toml
new file mode 100644 (file)
index 0000000..ff2fd8f
--- /dev/null
@@ -0,0 +1,6 @@
+[package]
+name = "roomy"
+version = "0.0.0"
+edition = "2024"
+
+[dependencies]
\ No newline at end of file
diff --git a/roomy/src/main.rs b/roomy/src/main.rs
new file mode 100644 (file)
index 0000000..e7a11a9
--- /dev/null
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}