about summary refs log tree commit diff stats
path: root/usr/src/kei
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/kei')
-rw-r--r--usr/src/kei/Cargo.toml12
-rw-r--r--usr/src/kei/src/main.rs4
2 files changed, 16 insertions, 0 deletions
diff --git a/usr/src/kei/Cargo.toml b/usr/src/kei/Cargo.toml
new file mode 100644
index 0000000..1d24f77
--- /dev/null
+++ b/usr/src/kei/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "kei"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[[bin]]
+name = "kei"
+path = "src/main.rs"
+
+[dependencies]
diff --git a/usr/src/kei/src/main.rs b/usr/src/kei/src/main.rs
new file mode 100644
index 0000000..b193299
--- /dev/null
+++ b/usr/src/kei/src/main.rs
@@ -0,0 +1,4 @@
+fn main() {
+    // we're probably gonna have to go nostd on
+    // this and I'm mildly worried about that.
+}