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]
|
2023-05-06 06:50:24 -05:00
|
|
|
|
2023-05-15 02:19:34 -05:00
|
|
|
hbvm = { git = "https://git.ablecorp.us/ableos/holey-bytes" }
|
2023-06-26 06:36:30 -05:00
|
|
|
hbasm = { git = "https://git.ablecorp.us/ableos/holey-bytes" }
|
|
|
|
|
2023-05-06 06:50:24 -05:00
|
|
|
embedded-graphics = "0.7.1"
|
|
|
|
|
|
|
|
|
2023-04-05 12:29:20 -05:00
|
|
|
error-stack = { version = "0.3", default-features = false }
|
|
|
|
log = "0.4"
|
|
|
|
spin = "0.9"
|
|
|
|
uart_16550 = "0.2"
|
|
|
|
slab = { version = "0.4", default-features = false }
|
2023-04-07 16:44:33 -05:00
|
|
|
xml = { git = "https://git.ablecorp.us/ableos/ableos_userland" }
|
2023-04-05 12:29:20 -05:00
|
|
|
|
|
|
|
clparse = { git = "https://git.ablecorp.us/ableos/ableos_userland", default-features = false }
|
|
|
|
versioning = { git = "https://git.ablecorp.us/ableos/ableos_userland" }
|
2023-05-06 06:50:24 -05:00
|
|
|
able_graphics_library = { git = "https://git.ablecorp.us/ableos/ableos_userland" }
|
2023-04-07 16:44:33 -05:00
|
|
|
hashbrown = "*"
|
2022-08-07 16:42:23 -05:00
|
|
|
|
|
|
|
[dependencies.crossbeam-queue]
|
|
|
|
version = "0.3"
|
|
|
|
default-features = false
|
|
|
|
features = ["alloc"]
|
2022-03-11 13:51:47 -06:00
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
[dependencies.derive_more]
|
|
|
|
version = "0.99"
|
|
|
|
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]
|
|
|
|
limine = { version = "0.1", git = "https://github.com/limine-bootloader/limine-rs" }
|
|
|
|
x86_64 = "0.14"
|
|
|
|
x2apic = "0.4"
|
2023-05-06 06:50:24 -05:00
|
|
|
virtio-drivers = "0.4.0"
|
2023-04-07 16:44:33 -05:00
|
|
|
# rdrand = "*"
|
|
|
|
rdrand = { version = "0.8", default-features = false }
|
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "riscv64")'.dependencies]
|
|
|
|
sbi = "0.2.0"
|