[package]
name = "dark-std"
version = "0.2.22"
edition = "2021"
authors = ["zhuxiujia@qq.com"]
license = "MIT/Apache-2.0"
repository = "https://github.com/darkrpc/dark-std.git"
description = "dark-std is an Implementation of asynchronous containers build on tokio. It uses a read-write separation design borrowed from Golang"
readme = "README.md"
[features]
default = ["parking-lot"]
parking-lot = ["dep:parking_lot"]
std-lock = []
[dependencies]
serde = "1.0"
flume = {version="0.11",default-features = false,features = ["async"]}
parking_lot = { version = "0.12", optional = true }
indexmap = {version = "2.2.5",features = ["serde"]}
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
crossbeam = { version = "0.8"}