dynqueue/Cargo.toml
Harald Hoyer e157e17d7a Change lib to handle lockless collections
crossbeam_queue::SegQueue does not need a guarding RwLock.

Fixes: https://github.com/haraldh/dynqueue/issues/4
2020-07-20 13:46:14 +02:00

20 lines
552 B
TOML

[package]
name = "dynqueue"
version = "0.1.4-alpha.0"
authors = ["Harald Hoyer <harald@redhat.com>"]
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/dynqueue"
homepage = "https://github.com/haraldh/dynqueue"
repository = "https://github.com/haraldh/dynqueue"
description = "Dynamically extendable Rayon parallel iterator"
readme = "README.md"
keywords = [ "parallel", "performance", "thread", "join", "concurrency"]
categories = [ "concurrency" ]
[dependencies]
rayon = "1.3"
crossbeam-queue = { version = "0.2", optional = true }