summaryrefslogtreecommitdiff
path: root/crates/alloc_buddy
diff options
context:
space:
mode:
authorNathan Ringo <nathan@remexre.com>2024-09-12 18:14:13 -0500
committerNathan Ringo <nathan@remexre.com>2024-09-12 18:14:13 -0500
commitec991590e4e3b92e407060410ff33525dc740988 (patch)
tree287c2fa46f9814ce804c2dde60aa37e5823762cb /crates/alloc_buddy
parent128aa9bb0f0cd1410a30d45775e7627b01ed74a2 (diff)
Adds the start of a regular allocator, and some page table maintainence.
Diffstat (limited to 'crates/alloc_buddy')
-rw-r--r--crates/alloc_buddy/Cargo.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/alloc_buddy/Cargo.toml b/crates/alloc_buddy/Cargo.toml
index 43e1cee..3d58409 100644
--- a/crates/alloc_buddy/Cargo.toml
+++ b/crates/alloc_buddy/Cargo.toml
@@ -7,7 +7,6 @@ publish = false
[dependencies]
allocator-api2 = { version = "0.2.18", default-features = false }
contracts = { version = "0.6.3", default-features = false }
-static_assertions = { version = "1.1.0", default-features = false }
vernos_alloc_physmem_free_list = { path = "../alloc_physmem_free_list" }
vernos_utils = { path = "../utils" }