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

23 lines
538 B
TOML
Raw Normal View History

[package]
edition = "2021"
name = "kernel"
2022-12-07 00:10:38 +00:00
version = "0.2.0"
[dependencies]
2022-05-07 12:08:34 +00:00
linked_list_allocator = "0.9"
log = "0.4.14"
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" }
tracing = { version = "0.1.37", default-features = false, features = ["attributes"] }
[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"