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