-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
32 lines (28 loc) · 984 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
members = ["benchmark"]
[package]
name = "loole"
version = "0.4.0"
edition = "2021"
authors = ["Mahdi Shojaee <[email protected]>"]
description = "A safe async/sync multi-producer, multi-consumer channel"
repository = "https://github.com/mahdi-shojaee/loole"
documentation = "https://docs.rs/loole"
keywords = ["async", "thread", "channel", "mpmc", "mpsc"]
categories = ["concurrency", "data-structures"]
license = "MIT/Apache-2.0"
readme = "README.md"
exclude = ["/.*"]
[dependencies]
futures-sink = { version = "0.3", default-features = false }
futures-core = { version = "0.3", default-features = false }
[dev-dependencies]
tokio = { version = "1.35.0", features = ["full"] }
async-std = { version = "1.12.0", features = ["attributes", "unstable"] }
futures = { version = "^0.3", features = ["std"] }
crossbeam-utils = "0.8.16"
rand = "0.8.5"
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "criterion_benchmarks"
harness = false