[package]
edition = "2024"
name = "buddy_pool"
version = "0.0.1"
authors = ["bertoni"]
build = false
include = [
"Cargo.toml",
"src/*.rs",
"README",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "simple buddy allocator"
readme = "README.md"
keywords = [
"buddy",
"allocator",
]
license = "MIT OR BSD-2-Clause OR BSD-1-Clause"
repository = "https://github.com/jbertoni/BuddyPool"
[lib]
name = "buddy_pool"
path = "src/lib.rs"
[[bin]]
name = "buddy_pool"
path = "src/main.rs"