-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
40 lines (32 loc) · 1.04 KB
/
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
37
38
39
40
[package]
name = "stable-vec"
version = "0.4.1"
authors = ["Lukas Kalbertodt <[email protected]>"]
edition = "2018"
description = """
A Vec-like collection which guarantees stable indices and features O(1)
element deletion (semantically similar to `Vec<Option<T>>`). Useful for
allocations in graphs or similar data structures.
"""
documentation = "https://docs.rs/stable-vec"
repository = "https://github.com/LukasKalbertodt/stable-vec"
license = "MIT/Apache-2.0"
keywords = ["vector", "index", "option", "arena", "bitvec"]
categories = ["data-structures", "memory-management", "no-std"]
readme = "README.md"
[badges]
travis-ci = { branch = "master", repository = "LukasKalbertodt/stable-vec" }
maintenance = { status = "actively-developed" }
[workspace]
members = ["asm-test"]
[features]
nightly-bench = ["criterion/real_blackbox"]
[dependencies]
no-std-compat = { version = "0.2.0", features = ["alloc"] }
[dev-dependencies]
quickcheck = "0.9"
quickcheck_macros = "0.9"
criterion = { version = "0.2" }
[[bench]]
name = "benchmark"
harness = false