summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2025-12-09 19:09:40 +0000
committersoryu <soryu@soryu.co>2025-12-23 14:47:18 +0000
commitd27bd879ea142f692c251e6583c76860c01ba191 (patch)
treedca35a6cba505f3fda6c1f9064a2dc236b9070f9
parentee927e4f2a1aad836a1bb1a4092c414fe0d7b206 (diff)
downloadsoryu-d27bd879ea142f692c251e6583c76860c01ba191.tar.gz
soryu-d27bd879ea142f692c251e6583c76860c01ba191.zip
Add makima rust package
-rw-r--r--TODO.md12
-rw-r--r--makima/Cargo.lock7
-rw-r--r--makima/Cargo.toml6
-rw-r--r--makima/src/main.rs3
4 files changed, 16 insertions, 12 deletions
diff --git a/TODO.md b/TODO.md
deleted file mode 100644
index b11306f..0000000
--- a/TODO.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# TODO List
-
-## Design Requirements
-- [ ] Create a logo like the rising heart sun but fixed instead of rotating
-- [ ] Create a logo shaped like the A10 interface headset clips in red, angled design
-
-
-## Authentication System
-- [ ] Implement auth system (evaluate Auth0 or other turnkey solutions)
-
-## Core Functionality
-- [ ] Implement the main mechanism
diff --git a/makima/Cargo.lock b/makima/Cargo.lock
new file mode 100644
index 0000000..cb5e3b5
--- /dev/null
+++ b/makima/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "makima"
+version = "0.1.0"
diff --git a/makima/Cargo.toml b/makima/Cargo.toml
new file mode 100644
index 0000000..2086c36
--- /dev/null
+++ b/makima/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "makima"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
diff --git a/makima/src/main.rs b/makima/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/makima/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}