[package]
edition = "2024"
rust-version = "1.87"
name = "frame-alloc"
version = "0.1.0"
build = false
exclude = ["validation/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std, dependency-free, const-constructible physical frame allocator for kernels"
readme = "README.md"
keywords = [
"allocator",
"kernel",
"no-std",
"physical-memory",
"buddy",
]
categories = [
"memory-management",
"no-std",
"os",
]
license = "MIT"
repository = "https://github.com/PaulSandner/frame_alloc"
[features]
default = []
stats = []
[lib]
name = "frame_alloc"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[dependencies]
[dev-dependencies]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(audit)"]