[package]
rust-version = "1.61"
name = "linked_list_allocator"
version = "0.10.6"
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures."
homepage = "https://os.phil-opp.com/kernel-heap.html#a-better-allocator"
documentation = "https://docs.rs/crate/linked_list_allocator"
readme = "README.md"
keywords = [
"allocator",
"no_std",
"malloc",
"heap",
"kernel",
]
license = "Apache-2.0/MIT"
repository = "https://github.com/phil-opp/linked-list-allocator"
[package.metadata.release]
pre-release-commit-message = "Release version {{version}}"
[[package.metadata.release.pre-release-replacements]]
file = "Changelog.md"
search = "# Unreleased"
replace = """
# Unreleased
# {{version}} – {{date}}"""
exactly = 1
[features]
alloc_ref = []
const_mut_refs = []
default = ["use_spin"]
use_spin = ["spinning_top"]
use_spin_nightly = ["use_spin"]
[lib]
name = "linked_list_allocator"
path = "src/lib.rs"
[dependencies.spinning_top]
version = "0.2.5"
optional = true
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]