-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 896 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (29 loc) · 896 Bytes
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]
name = "stable-vec"
version = "0.4.2"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"
rust-version = "1.36.0"
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"
[workspace]
members = ["asm-test"]
[features]
nightly-bench = ["criterion/real_blackbox"]
[dependencies]
[dev-dependencies]
quickcheck = "1.1"
quickcheck_macros = "1.1"
criterion = { version = "0.2" }
[[bench]]
name = "benchmark"
harness = false