1[package]
2name = "linked_list_allocator"
3version = "0.10.5"
4authors = ["Philipp Oppermann <dev@phil-opp.com>"]
5license = "Apache-2.0/MIT"
6
7description = "Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures."
8keywords = ["allocator", "no_std", "malloc", "heap", "kernel"]
9
10repository = "https://github.com/phil-opp/linked-list-allocator"
11documentation = "https://docs.rs/crate/linked_list_allocator"
12homepage = "http://os.phil-opp.com/kernel-heap.html#a-better-allocator"
13
14rust-version = "1.61"
15
16[features]
17default = ["use_spin"]
18use_spin = ["spinning_top"]
19# deprecated - use `use_spin` instead
20use_spin_nightly = ["use_spin"]
21alloc_ref = []
22# deprecated - no effect
23const_mut_refs = []
24
25[dependencies.spinning_top]
26version = "0.2.5"
27optional = true
28
29[package.metadata.release]
30dev-version = false
31pre-release-replacements = [
32 { file = "Changelog.md", search = "# Unreleased", replace = "# Unreleased\n\n# {{version}} – {{date}}", exactly = 1 },
33]
34pre-release-commit-message = "Release version {{version}}"
35