1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/kernel/Cargo.toml

22 lines
434 B
TOML
Raw Normal View History

[package]
edition = "2021"
name = "kernel"
2022-12-07 00:10:38 +00:00
version = "0.2.0"
[dependencies]
slab = { version = "0.4", default-features = false }
2022-08-08 23:32:42 +00:00
spin = "0.9"
2022-12-07 00:10:38 +00:00
versioning = { git = "https://git.ablecorp.us/able/aos_userland" }
2022-12-07 23:07:02 +00:00
log = "0.4"
[dependencies.crossbeam-queue]
version = "0.3"
default-features = false
features = ["alloc"]
2022-12-07 00:10:38 +00:00
[target.'cfg(target_arch = "x86_64")'.dependencies]
limine = "0.1"
uart_16550 = "0.2"
x86_64 = "0.14"
2022-12-08 19:15:10 +00:00
x2apic = "0.4"