kernel/Cargo.toml

25 lines
831 B
TOML
Raw Normal View History

2022-11-01 07:24:50 -05:00
[package]
name = "kernel"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-06-06 22:02:00 -05:00
# x86_64 = { git = "https://gitea.pterpstra.com/mikros/x86_64" }
tar-no-std = { version = "0.3.0" }
2022-11-01 07:24:50 -05:00
unwinding = { path = "../unwinding", default-features = false, features = ["personality", "panic", "unwinder", "fde-static", "hide-trace"] }
2024-06-06 22:02:00 -05:00
uart_16550 = "0.3.0"
spin = "0.9.8"
linked_list_allocator = "0.10.5"
2022-11-01 07:24:50 -05:00
tap = "1.0.1"
replace_with = { version = "0.1.7", default-features = false, features = ["nightly"] }
2024-06-06 22:02:00 -05:00
hashbrown = "0.14.5"
pic8259 = "0.11.0"
bootloader_api = "0.11.7"
2022-11-01 07:24:50 -05:00
static_assertions = "1.1.0"
2024-06-06 22:02:00 -05:00
crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] }
slab = { version = "0.4.9", default-features = false }
intrusive-collections = "0.9.6"
elf = { version = "0.7.4", default-features = false }
x86_64 = "0.15.1"