Files
os-rewrite/kernel/Cargo.toml
T
2024-11-16 15:13:05 +00:00

17 lines
288 B
TOML

[package]
name = "kernel"
version.workspace = true
edition.workspace = true
[dependencies]
limine = "0.3.1"
spin = "0.9.8"
bitflags = "2.4.0"
lazy_static = { version = "1.5.0", features = ["spin", "spin_no_std"] }
[[bin]]
name = "kernel"
path = "src/main.rs"
test = false
bench = false