This commit is contained in:
Faynot
2026-03-27 14:06:30 +03:00
commit aa357b6198
10 changed files with 654 additions and 0 deletions

18
kernel/Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "RINA"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "kernel"
path = "src/main.rs"
[dependencies]
limine = "0.5"
embedded-graphics = "0.8"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"