[package]
edition = "2018"
name = "ach-spsc"
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"
[features]
alloc = []
default = []
[lib]
name = "ach_spsc"
path = "src/lib.rs"
[[test]]
name = "base"
path = "tests/base.rs"
[[test]]
name = "drop"
path = "tests/drop.rs"
[[test]]
name = "spsc"
path = "tests/spsc.rs"
[dependencies]
[dev-dependencies.on_drop]
version = "0.1"