cargo build

This commit is contained in:
2025-07-05 11:34:41 +09:00
parent 826a448500
commit 163ac1668d
26 changed files with 2676 additions and 0 deletions

30
Cargo.toml Normal file
View File

@ -0,0 +1,30 @@
[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"