From 22231ec036268ca2adb1f0b0feed0a91ea68728f Mon Sep 17 00:00:00 2001 From: Nathan Ringo Date: Sat, 14 Sep 2024 23:04:03 -0500 Subject: Start of virtual memory allocator; got an ICE, though! --- crates/kernel/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crates/kernel/Cargo.toml') diff --git a/crates/kernel/Cargo.toml b/crates/kernel/Cargo.toml index 6c28dd8..5fef50b 100644 --- a/crates/kernel/Cargo.toml +++ b/crates/kernel/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["staticlib"] [dependencies] -allocator-api2 = { version = "0.2.18", default-features = false } +allocator-api2 = { version = "0.2.18", default-features = false, features = ["alloc"] } bitflags = { version = "2.6.0", default-features = false } cfg-if = { version = "1.0.0", default-features = false } contracts = { version = "0.6.3", default-features = false } @@ -16,6 +16,7 @@ log = { version = "0.4.20", default-features = false } spin = { version = "0.9.8", default-features = false, features = ["fair_mutex", "use_ticket_mutex"] } vernos_alloc_buddy = { path = "../alloc_buddy" } vernos_alloc_physmem_free_list = { path = "../alloc_physmem_free_list" } +vernos_alloc_vma_tree = { path = "../alloc_vma_tree" } vernos_device_tree = { path = "../device_tree" } vernos_driver_riscv_timer = { path = "../driver_riscv_timer" } vernos_utils = { path = "../utils" } -- cgit v1.2.3