2024-02-05 11:55:50 +02:00
|
|
|
[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]
|
2024-03-12 18:17:47 +02:00
|
|
|
yggdrasil-abi = { path = "../../../lib/abi" }
|
2024-02-14 17:20:42 +02:00
|
|
|
kernel-arch = { path = "../../arch" }
|
2024-02-05 14:45:17 +02:00
|
|
|
libk-util = { path = "../libk-util" }
|
2024-02-06 12:27:02 +02:00
|
|
|
libk-mm-interface = { path = "interface" }
|
2024-02-14 17:20:42 +02:00
|
|
|
vmalloc = { path = "../../lib/vmalloc" }
|
2024-02-05 11:55:50 +02:00
|
|
|
|
2024-06-09 13:43:56 +03:00
|
|
|
libyalloc = { path = "../../../lib/libyalloc", default-features = false, features = ["dep-of-kernel"] }
|
|
|
|
|
2024-02-05 11:55:50 +02:00
|
|
|
log = "0.4.20"
|