30 lines
461 B
TOML
30 lines
461 B
TOML
[package]
|
|
name = "aios"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bootloader = "0.9.23"
|
|
volatile = "0.2"
|
|
spin = "0.9"
|
|
x86_64 = "0.14"
|
|
uart_16550 = "0.2"
|
|
pic8259 = "0.10"
|
|
pc-keyboard = "0.7"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.4"
|
|
features = ["spin_no_std"]
|
|
|
|
[[bin]]
|
|
name = "kernel"
|
|
path = "src/main.rs"
|
|
|
|
[target.'cfg(target_os = "none")'.dependencies]
|
|
linked_list_allocator = "0.10"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort" |