kernel/Cargo.toml

25 lines
820 B
TOML
Raw Normal View History

2022-11-01 07:24:50 -05:00
[package]
name = "kernel"
version = "0.1.0"
edition = "2021"
[dependencies]
x86_64 = { git = "https://github.com/pjht/x86_64", features = ["experimental"] }
tar-no-std = { path = "../tar-no-std" }
unwinding = { path = "../unwinding", default-features = false, features = ["personality", "panic", "unwinder", "fde-static", "hide-trace"] }
2023-09-29 15:44:53 -05:00
uart_16550 = "0.2.18"
spin = "0.9.4"
linked_list_allocator = "0.10.4"
elfloader = "0.16.0"
2022-11-01 07:24:50 -05:00
tap = "1.0.1"
replace_with = { version = "0.1.7", default-features = false, features = ["nightly"] }
2023-09-29 15:44:53 -05:00
hashbrown = "0.13.1"
2022-11-01 07:24:50 -05:00
pic8259 = "0.10.2"
2023-09-29 15:44:53 -05:00
bootloader_api = "0.11.0"
2022-11-01 07:24:50 -05:00
static_assertions = "1.1.0"
2023-09-29 15:44:53 -05:00
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
slab = { version = "0.4.7", default-features = false }
2022-11-01 07:24:50 -05:00
intrusive-collections = "0.9.4"
2023-09-29 15:44:53 -05:00
xmas-elf = "0.8.0"