# 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] name = "typed-generational-arena" version = "0.1.4" authors = [ "Nick Fitzgerald ", "Jad Elkhaleq Ghalayini ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A safe arena allocator that supports deletion without suffering from the ABA problem by using generational indices. Now with typed indices!" readme = "README.md" keywords = [ "generation", "index", "arena", "ecs", ] categories = [ "memory-management", "no-std", "rust-patterns", "data-structures", ] license = "MPL-2.0" repository = "https://gitlab.com/tekne/typed-generational-arena" [profile.bench] debug = 2 [lib] name = "typed_generational_arena" path = "src/lib.rs" [[test]] name = "quickchecks" path = "tests/quickchecks.rs" [[test]] name = "readme" path = "tests/readme.rs" [[test]] name = "serde" path = "tests/serde.rs" [[test]] name = "tests" path = "tests/tests.rs" [[bench]] name = "benches" path = "benches/benches.rs" harness = false [dependencies.cfg-if] version = "1.0" [dependencies.serde] version = "1.0" optional = true default-features = false [dev-dependencies.bincode] version = "1.0" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.quickcheck] version = "1.0" [dev-dependencies.serde] version = "1.0" features = ["derive"] default-features = false [dev-dependencies.serde_test] version = "1.0" [features] default = ["std"] std = []