mirror of
https://github.com/XunilGroup/XunilOS.git
synced 2026-04-25 11:49:03 +02:00
add mouse support and interrupts on x86_64 using a ps2 mouse which needed pic unmasking, add span filling to framebuffer, add back without_interrupts to serial console and framebuffer, add a mouse rectangle which tracks the mouse position and test the performance of the drawing.
27 lines
462 B
TOML
27 lines
462 B
TOML
[package]
|
|
name = "XunilOS"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "XunilOS"
|
|
test = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
font8x8 = { version = "0.3.1", default-features = false }
|
|
lazy_static = { version = "1.5.0", features = ["spin_no_std"] }
|
|
limine = "0.5"
|
|
pc-keyboard = "0.8.0"
|
|
pic8259 = "0.11.0"
|
|
spin = "0.10.0"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
x86_64 = "0.15.4"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|