update v2

This commit is contained in:
2025-07-05 14:31:39 +09:00
parent 163ac1668d
commit 152d6de44d
32 changed files with 455 additions and 2121 deletions

View File

@ -1,27 +1,19 @@
[package]
name = "aios"
version = "0.1.0"
# AIOS v2: Octox-inspired AI Operating System for x86_64
[workspace]
members = [
"kernel",
"user",
"claude-service",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
license = "MIT"
[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"
[workspace.dependencies]
kernel = { path = "kernel", default-features = false }
[profile.dev]
panic = "abort"