# 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" rust-version = "1.60" name = "rsbmalloc" version = "0.4.4" description = "A simple but fast binned allocator for Rust. Single-threaded for no_std, multi-threaded otherwise" homepage = "https://github.com/AWBroch/rsbmalloc" readme = "README.md" keywords = [ "allocator", "no_std", "binned_allocator", ] categories = ["memory-management"] license = "MIT OR Apache-2.0" repository = "https://github.com/AWBroch/rsbmalloc" [dependencies.lazy_static] version = "1" features = ["spin_no_std"] default-features = false [dependencies.libc] version = "0.2" [dependencies.num_cpus] version = "1" optional = true [dependencies.once_cell] version = "1" optional = true [dependencies.spin] version = "0.9" features = ["spin_mutex"] default-features = false [features] default = ["std"] std = [ "dep:num_cpus", "dep:once_cell", ]