[package]
name = "dark-std"
version = "0.2.20"
edition = "2021"
authors = ["zhuxiujia@qq.com"]
license = "MIT/Apache-2.0"
repository = "https://github.com/darkrpc/dark-std.git"
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"
[features]
[dependencies]
serde = "1.0"
flume = {version="0.11",default-features = false,features = ["async"]}
parking_lot = "0.12"
indexmap = {version = "2.2.5",features = ["serde"]}
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
crossbeam = { version = "0.8"}