rust-kernel/Cargo.toml
2026-04-13 21:29:54 +02:00

23 lines
347 B
TOML

[package]
name = "rust-kernel"
version = "0.1.0"
edition = "2024"
authors = ["Ahmed Nagi"]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[[bin]]
name = "rust-kernel"
test = false
bench = false
[dependencies]
bootloader = "0.9"
volatile = "0.2.6"
lazy_static = { version = "1.5", features = ["spin_no_std"] }
spin = "0.5.2"