2022-02-28 08:54:41 -06:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "kernel"
|
2023-03-30 16:43:04 -05:00
|
|
|
version = "0.2.0"
|
2023-05-23 05:16:14 -05:00
|
|
|
|
2022-02-28 08:54:41 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2024-09-08 19:42:11 -05:00
|
|
|
embedded-graphics = "0.8"
|
2024-06-14 11:48:53 -05:00
|
|
|
hbvm.git = "https://git.ablecorp.us/ableos/holey-bytes"
|
|
|
|
log = "0.4"
|
|
|
|
spin = "0.9"
|
2024-09-11 17:09:47 -05:00
|
|
|
slab = { version = "0.4", default-features = false }
|
2024-09-09 18:10:10 -05:00
|
|
|
uart_16550 = { version = "0.3", features = ["nightly"] }
|
2024-06-14 11:48:53 -05:00
|
|
|
xml.git = "https://git.ablecorp.us/ableos/ableos_userland"
|
|
|
|
versioning.git = "https://git.ablecorp.us/ableos/ableos_userland"
|
2024-09-08 19:42:11 -05:00
|
|
|
# able_graphics_library.git = "https://git.ablecorp.us/ableos/ableos_userland"
|
2024-09-09 18:10:10 -05:00
|
|
|
hashbrown = { version = "0.14", features = ["nightly"] }
|
2023-08-22 08:31:28 -05:00
|
|
|
|
|
|
|
[dependencies.limine]
|
|
|
|
version = "0.1"
|
2024-09-01 16:29:42 -05:00
|
|
|
#git = "https://github.com/limine-bootloader/limine-rs"
|
2022-08-07 16:42:23 -05:00
|
|
|
|
|
|
|
[dependencies.crossbeam-queue]
|
2024-06-14 11:48:53 -05:00
|
|
|
version = "0.3"
|
2023-08-22 08:31:28 -05:00
|
|
|
default-features = false
|
2024-09-09 18:10:10 -05:00
|
|
|
features = ["alloc", "nightly"]
|
|
|
|
|
2024-09-08 19:42:11 -05:00
|
|
|
# [dependencies.clparse]
|
|
|
|
# git = "https://git.ablecorp.us/ableos/ableos_userland"
|
|
|
|
# default-features = false
|
2022-03-11 13:51:47 -06:00
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
[dependencies.derive_more]
|
2024-09-08 19:42:11 -05:00
|
|
|
version = "1"
|
2023-03-30 16:43:04 -05:00
|
|
|
default-features = false
|
|
|
|
features = [
|
|
|
|
"add",
|
|
|
|
"add_assign",
|
|
|
|
"constructor",
|
|
|
|
"display",
|
|
|
|
"from",
|
|
|
|
"into",
|
|
|
|
"mul",
|
|
|
|
"mul_assign",
|
|
|
|
"not",
|
|
|
|
"sum",
|
|
|
|
]
|
|
|
|
|
2023-04-05 12:29:20 -05:00
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
2024-09-08 19:42:11 -05:00
|
|
|
x86_64 = "0.15"
|
2023-03-30 16:43:04 -05:00
|
|
|
x2apic = "0.4"
|
2024-09-08 19:42:11 -05:00
|
|
|
virtio-drivers = "0.7"
|
2023-03-30 16:43:04 -05:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "riscv64")'.dependencies]
|
|
|
|
sbi = "0.2.0"
|
2024-09-11 17:09:47 -05:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
|
|
aarch64-cpu = "9"
|