summaryrefslogtreecommitdiff
path: root/kernel/Cargo.toml
diff options
context:
space:
mode:
authorVaze <vaze@vaze.dev>2026-05-20 20:49:56 +0200
committerVaze <vaze@vaze.dev>2026-05-20 20:49:56 +0200
commit4d39a0553ecd639cd94aa3dbe7a8744893ffd3ae (patch)
tree64d9e9ed853e544fff7ff2fa3ae72648bca747d5 /kernel/Cargo.toml
parent10924a7138a288f5f717404b49e01f840dcfbcf2 (diff)
Started work on barebones kernel. Compiles without errors, but completely untested as of yet.
Diffstat (limited to 'kernel/Cargo.toml')
-rw-r--r--kernel/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml
index c9211be..7b9155f 100644
--- a/kernel/Cargo.toml
+++ b/kernel/Cargo.toml
@@ -4,3 +4,8 @@ version = "0.1.0"
edition = "2024"
[dependencies]
+
+[profile.dev]
+panic = "abort"
+[profile.release]
+panic = "abort"