aboutsummaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorkrolyxon <me@krolyxon.com>2026-06-17 22:14:14 +0530
committerkrolyxon <me@krolyxon.com>2026-06-17 22:14:14 +0530
commit1f800b74329d4f8b1511b4cf2a0d031439e1038d (patch)
treecbc56514ec5a903a028e919b8fd6becfd8ae1ce9 /rust
parented0847ba38dea99b2caa9035569d960f86eeb190 (diff)
rust-rewrite init
Diffstat (limited to 'rust')
-rw-r--r--rust/Cargo.lock7
-rw-r--r--rust/Cargo.toml6
-rw-r--r--rust/src/main.rs3
3 files changed, 16 insertions, 0 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
new file mode 100644
index 0000000..c03efdd
--- /dev/null
+++ b/rust/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "orion-rf"
+version = "0.1.0"
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
new file mode 100644
index 0000000..1b13e2d
--- /dev/null
+++ b/rust/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "orion-rf"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
diff --git a/rust/src/main.rs b/rust/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/rust/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}