[package]
edition = "2021"
name = "dark-std"
version = "0.2.18"
authors = ["zhuxiujia@qq.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Thread-safe containers with a read-write separation design borrowed from Golang: reads avoid the container write-lock and never contend with each other; writes are serialized and wait for active readers. Plus async/blocking utilities"
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/darkrpc/dark-std.git"
[features]
[lib]
name = "dark_std"
path = "src/lib.rs"
[[test]]
name = "btree"
path = "tests/btree.rs"
[[test]]
name = "defer"
path = "tests/defer.rs"
[[test]]
name = "hash_map"
path = "tests/hash_map.rs"
[[test]]
name = "index_map"
path = "tests/index_map.rs"
[[test]]
name = "issue3_races"
path = "tests/issue3_races.rs"
[[test]]
name = "test_wg"
path = "tests/test_wg.rs"
[[test]]
name = "vec"
path = "tests/vec.rs"
[[bench]]
name = "bench_map"
path = "benches/bench_map.rs"
[[bench]]
name = "bench_rw_vec"
path = "benches/bench_rw_vec.rs"
[dependencies.flume]
version = "0.11"
features = ["async"]
default-features = false
[dependencies.indexmap]
version = "2.2.5"
features = ["serde"]
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
[dev-dependencies.crossbeam]
version = "0.8"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]