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
|
[package]
name = "append-only-vec"
version = "0.1.7"
authors = ["David Roundy <daveroundy@gmail.com>"]
edition = "2021"
description = "Append-only, concurrent vector"
license = "MIT OR Apache-2.0"
repository = "https://github.com/droundy/append-only-vec"
readme = "README.md"
categories = ["data-structures", "concurrency"]
keywords = ["frozen", "data-structure"]
[dependencies]
[dev-dependencies]
scaling = "0.1.3"
parking_lot = "0.12"
[[bench]]
name = "bench"
harness = false
|