poppin/kernel/Cargo.toml
2024-06-10 23:57:38 +03:00

23 lines
453 B
TOML

[package]
name = "kernel"
version = "0.1.0"
edition = "2021"
test=false
[lib]
name="kernel"
test=false
crate-type=["staticlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
log = "0.4.21"
multiboot2 = "0.20.2"
pc-keyboard = "0.7.0"
pic8259 = "0.11.0"
spin = "0.9.8"
uart_16550 = "0.3.0"
x86 = "0.52.0"
x86_64 = "0.15.1"