[package]
edition = "2018"
name = "ach-array"
version = "0.2.4"
authors = ["rise0chen <rise0chen@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atomic Channel"
readme = "README.md"
keywords = [
"atomic",
"channel",
"no-heap",
]
categories = ["concurrency"]
license-file = "LICENSE"
repository = "https://github.com/rise0chen/ach.git"
resolver = "2"
[lib]
name = "ach_array"
path = "src/lib.rs"
[[test]]
name = "base"
path = "tests/base.rs"
[[test]]
name = "drop"
path = "tests/drop.rs"
[[test]]
name = "mpmc"
path = "tests/mpmc.rs"
[[test]]
name = "mpsc"
path = "tests/mpsc.rs"
[[test]]
name = "spsc"
path = "tests/spsc.rs"
[dependencies.ach-cell]
version = "0.2"
[dev-dependencies.on_drop]
version = "0.1"