[package]
edition = "2024"
name = "tg-rcore-tutorial-multi-processor-kernel-alloc-wzy"
version = "0.1.0-preview.1"
authors = ["Ziyan Wang <charliewang.cpp@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Kernel memory allocator for rCore Tutorial OS using buddy allocation, with SMP support."
homepage = "https://github.com/CharlieVinnie/tg-rcore-tutorial/tree/smp"
documentation = "https://docs.rs/tg-rcore-tutorial-kernel-alloc"
readme = "README.md"
keywords = [
"ai",
"ai4ose",
"kernel",
"learning",
"os",
]
categories = [
"no-std",
"embedded",
"memory-management",
]
license = "GPL-3.0"
repository = "https://github.com/CharlieVinnie/tg-rcore-tutorial"
[lib]
name = "tg_rcore_tutorial_multi_processor_kernel_alloc_wzy"
path = "src/lib.rs"
[dependencies.customizable-buddy]
version = "0.0.3"
[dependencies.log]
version = "0.4"
[dependencies.page-table]
version = "0.0.6"
[dependencies.tg-sync]
version = "0.1.0-preview.1"
package = "tg-rcore-tutorial-multi-processor-sync-wzy"