# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] rust-version = "1.61" name = "linked_list_allocator" version = "0.10.5" authors = ["Philipp Oppermann "] 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 = "http://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] dev-version = false pre-release-commit-message = "Release version {{version}}" [[package.metadata.release.pre-release-replacements]] exactly = 1 file = "Changelog.md" replace = """ # Unreleased # {{version}} – {{date}}""" search = "# Unreleased" [dependencies.spinning_top] version = "0.2.5" optional = true [features] alloc_ref = [] const_mut_refs = [] default = ["use_spin"] use_spin = ["spinning_top"] use_spin_nightly = ["use_spin"]