19 lines
228 B
TOML
19 lines
228 B
TOML
[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"
|