# 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 = "2018" name = "blink-alloc" version = "0.3.1" authors = ["Zakarum "] description = "Fast, concurrent, arena-based allocator with drop support" homepage = "https://github.com/zakarumych/blink-alloc" documentation = "https://docs.rs/blink-alloc" readme = "README.md" keywords = [ "allocator", "arena", "concurrent", "drop", "no-std", ] categories = [ "memory-management", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/zakarumych/blink-alloc" [package.metadata.docs.rs] all-features = true [[example]] name = "global" required-features = [ "std", "sync", ] [[bench]] name = "bench" harness = false required-features = [ "alloc", "sync", "nightly", ] [dependencies.allocator-api2] version = "0.2.8" default-features = false [dependencies.parking_lot] version = "0.12" optional = true [dev-dependencies.bumpalo] version = "3.7" [dev-dependencies.criterion] version = "0.4" [features] alloc = ["allocator-api2/alloc"] default = ["std"] nightly = [ "allocator-api2/nightly", "bumpalo/allocator_api", ] std = [ "alloc", "allocator-api2/std", ] sync = [ "parking_lot", "std", ]