17 lines
431 B
TOML
17 lines
431 B
TOML
[package]
|
|
name = "libk-mm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yggdrasil-abi = { path = "../../../lib/abi" }
|
|
kernel-arch = { path = "../../arch" }
|
|
libk-util = { path = "../libk-util" }
|
|
libk-mm-interface = { path = "interface" }
|
|
vmalloc = { path = "../../lib/vmalloc" }
|
|
|
|
linked_list_allocator = "0.10.5"
|
|
log = "0.4.20"
|