mirror of
https://github.com/XunilGroup/XunilOS.git
synced 2026-06-02 13:44:25 +02:00
5f4154bd24
events and move parsing code to libxunil, and add mouse support again by using them, remove unneeded graphics and console output code, merge build files to a rust app builder, make framebuffer a driver and remove the graphics folder, add shell as an app in VFS
33 lines
556 B
TOML
33 lines
556 B
TOML
[package]
|
|
name = "XunilOS"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "XunilOS"
|
|
test = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
bitflags = "2.11.1"
|
|
heapless = "0.9.2"
|
|
lazy_static = { version = "1.5.0", features = ["spin_no_std"] }
|
|
limine = "0.5"
|
|
pc-keyboard = "0.8.0"
|
|
spin = "0.10.0"
|
|
static_cell = "2.1.1"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
pic8259 = "0.11.0"
|
|
x86_64 = "0.15.4"
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
aarch64-cpu = "11.2.0"
|
|
fdt = "0.1.5"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|