diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-14 23:04:03 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-14 23:04:03 -0500 |
commit | 22231ec036268ca2adb1f0b0feed0a91ea68728f (patch) | |
tree | 79dc49db7bd7758a7eb40a64828628461930b228 /crates/Cargo.toml | |
parent | 0392b41e7081c11caa9d04aa738bdac97062e9dd (diff) |
Start of virtual memory allocator; got an ICE, though!
Diffstat (limited to 'crates/Cargo.toml')
-rw-r--r-- | crates/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/Cargo.toml b/crates/Cargo.toml index 10aeec4..51eb2dc 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["alloc_buddy", "alloc_genmalloc", "alloc_physmem_free_list", "device_tree", "driver_riscv_timer", "kernel", "utils"] +members = ["alloc_buddy", "alloc_genmalloc", "alloc_physmem_free_list", "alloc_vma_tree", "device_tree", "driver_riscv_timer", "kernel", "utils"] resolver = "2" [profile.release] |