dark-std 0.2.22

dark-std is an Implementation of asynchronous containers build on tokio. It uses a read-write separation design borrowed from Golang
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dark-std"
version = "0.2.22"
authors = ["zhuxiujia@qq.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
license = "MIT/Apache-2.0"
repository = "https://github.com/darkrpc/dark-std.git"

[features]
default = ["parking-lot"]
parking-lot = ["dep:parking_lot"]
std-lock = []

[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"
path = "tests/issue3.rs"

[[test]]
name = "non_clone"
path = "tests/non_clone.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"
optional = true

[dependencies.serde]
version = "1.0"

[dev-dependencies.crossbeam]
version = "0.8"

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]