forked from fitzgen/generational-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 958 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
categories = ["memory-management", "no-std", "rust-patterns", "data-structures"]
description = "A safe arena allocator that supports deletion without suffering from the ABA problem by using generational indices."
keywords = ["generation", "index", "arena", "ecs"]
license = "MPL-2.0"
name = "generational-arena"
readme = "./README.md"
repository = "https://github.com/fitzgen/generational-arena"
version = "0.2.1"
[badges]
travis-ci = { repository = "fitzgen/generational-arena" }
[dependencies]
cfg-if = "0.1.5"
serde = { version = "1.0", optional = true, default-features = false }
[dev-dependencies]
quickcheck = "0.6.2"
criterion = "0.2"
serde_test = "1.0"
bincode = "1.0"
serde = { version = "1.0", default-features = false, features = ["derive"] }
[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[features]
default = ["std"]
std = []
[profile.bench]
debug = true