os/Cargo.toml

27 lines
518 B
TOML

[package]
name = "os"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "os"
harness = false
[[bin]]
name = "os"
harness = false
[dependencies]
bitflags = "1.3.2"
bootloader = { version = "0.9.8", features = ["map_physical_memory"] }
linked_list_allocator = "0.9.1"
pc-keyboard = "0.5.1"
pic8259 = "0.10.2"
spin = "0.9.2"
# x = { path = "../x" }
x86_64 = "0.14.8"
[package.metadata.bootimage]
# run-args = ["-s", "-S"]