18 lines
503 B
TOML
18 lines
503 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" }
|
|
|
|
libyalloc = { path = "../../../lib/libyalloc", default-features = false, features = ["dep-of-kernel"] }
|
|
|
|
log = "0.4.20"
|