[package]
edition = "2021"
name = "alloc_kern"
version = "0.1.0"
authors = ["Damien Durand <damien_501@hotmail.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std physical + virtual memory allocator with fragmentation handling, quarantine system, and safe IO API."
readme = "README.md"
keywords = [
"allocator",
"no_std",
"memory",
"virtual",
"kernel",
]
categories = [
"memory-management",
"no-std",
"embedded",
"os",
]
license = "BSD-2-Clause"
repository = "https://github.com/FrCrypticCode/alloc_kern"
[lib]
name = "alloc_kern"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies]