poppin/kernel/Cargo.toml

23 lines
453 B
TOML
Raw Normal View History

2024-05-23 18:39:00 +00:00
[package]
2024-06-10 20:57:38 +00:00
name = "kernel"
2024-05-23 18:39:00 +00:00
version = "0.1.0"
edition = "2021"
test=false
[lib]
2024-06-10 20:57:38 +00:00
name="kernel"
2024-05-23 18:39:00 +00:00
test=false
crate-type=["staticlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-06-10 20:57:38 +00:00
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
2024-05-23 18:39:00 +00:00
log = "0.4.21"
2024-06-10 20:57:38 +00:00
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"