ableos/kernel/Cargo.toml

59 lines
1.3 KiB
TOML
Raw Normal View History

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