# 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 = "compact_arena" version = "0.5.0" authors = ["Andre Bogus "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A crate with some types to allow indexed arenas with small memory footprint" readme = "README.md" keywords = [ "arena", "no-std", "no-heap", ] categories = [ "memory-management", "data-structures", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/llogiq/compact_arena" [lib] name = "compact_arena" path = "src/lib.rs" [[test]] name = "nano_arena" path = "tests/nano_arena.rs" [[test]] name = "threads" path = "tests/threads.rs" [[test]] name = "tiny_arena" path = "tests/tiny_arena.rs" [[test]] name = "tree" path = "tests/tree.rs" [dev-dependencies.crossbeam-utils] version = "0.8.0" [features] alloc = [] default = ["alloc"] uninit = [] [badges.travis-ci] repository = "llogiq/compact_arena"