From 1b6f76488dcc01c8e6c0efbe07751ebeea18c33b Mon Sep 17 00:00:00 2001 From: andromeda Date: Tue, 3 Mar 2026 22:01:49 +0100 Subject: add rust kernel stub --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c4d5b40 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "bootle" +version = "0.1.0" +edition = "2024" + +[lib] +crate-type = ["staticlib"] + +[dependencies] + +[profile.release] +panic = "abort" +opt-level = 'z' +debug = false + +[profile.dev] +panic = "abort" -- cgit v1.3.1