aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-17 12:56:20 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-17 12:56:20 +0100
commit8d7cdc955eec7cfddd74adf56cd77475bc962a02 (patch)
tree0d8897f2cb34d5ef970a9ad3c0d32ea6ef4d302a
parentae1e5aeeaf6f1a5db84adb97fd9eb5942f2e4754 (diff)
disabled unwinding on panic
-rw-r--r--StrixKernel/Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/StrixKernel/Cargo.toml b/StrixKernel/Cargo.toml
new file mode 100644
index 0000000..5bed9d6
--- /dev/null
+++ b/StrixKernel/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+name = "strix-kernel"
+version = "0.0.1"
+edition = "2024"
+
+[profile.dev]
+panic = "abort"
+
+[profile.release]
+panic = "abort"
+
+
+[dependencies]
+