# 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] edition = "2021" name = "simple-chunk-allocator" version = "0.1.6" authors = ["Philipp Schuster "] build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = """ A simple `no_std` allocator written in Rust that manages memory in fixed-size chunks/blocks. Useful for basic `no_std` binaries where you want to manage a heap of a few megabytes without complex features such as paging/page table management. Instead, this allocator gets a fixed/static memory region and allocates memory from there. This memory region can be contained inside the executable file that uses this allocator. """ homepage = "https://github.com/phip1611/simple-chunk-allocator" documentation = "https://docs.rs/simple-chunk-allocator" readme = "README.md" keywords = [ "allocator", "memory", ] categories = [ "memory-management", "no-std", ] license = "MIT" repository = "https://github.com/phip1611/simple-chunk-allocator" [profile.release] lto = true codegen-units = 1 [lib] name = "simple_chunk_allocator" path = "src/lib.rs" [[example]] name = "bench" path = "examples/bench.rs" [[example]] name = "minimal" path = "examples/minimal.rs" [dependencies.libm] version = "0.2" [dependencies.log] version = "0.4" [dependencies.spin] version = "0.9.8" [dev-dependencies.linked_list_allocator] version = "0.9" features = [ "use_spin_nightly", "const_mut_refs", "alloc_ref", ] [dev-dependencies.rand] version = "0.8" [dev-dependencies.simple_logger] version = "2.1" [dev-dependencies.x86] version = "0.51"