diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-17 12:56:20 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-17 12:56:20 +0100 |
| commit | 8d7cdc955eec7cfddd74adf56cd77475bc962a02 (patch) | |
| tree | 0d8897f2cb34d5ef970a9ad3c0d32ea6ef4d302a | |
| parent | ae1e5aeeaf6f1a5db84adb97fd9eb5942f2e4754 (diff) | |
disabled unwinding on panic
| -rw-r--r-- | StrixKernel/Cargo.toml | 14 |
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] + |
