-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (42 loc) · 1.04 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "rc_event_queue"
authors = ["Andrey Diduh <[email protected]>"]
license = "MIT OR Apache-2.0"
version = "0.4.3"
edition = "2018"
description = "VecDeque-like fast, unbounded, FIFO, concurent read-lock-free message queue."
repository = "https://github.com/tower120/rc_event_queue"
keywords = ["lock-free", "queue", "mpmc", "concurent", "message-queue"]
categories = ["data-structures", "concurrency"]
exclude = ["doc"]
[features]
double_buffering = []
[dependencies]
#parking_lot = "0.11.2"
spin = {version ="0.9.2", features = ["std"] }
lock_api = "0.4.5"
[dev-dependencies]
itertools = "0.10.1"
criterion = "0.3.3"
rand = "0.8.4"
compiletest_rs = { version = "0.7" }
[target.'cfg(loom)'.dev-dependencies]
loom = "0.5.2"
[[bench]]
name = "read_bench"
harness = false
[[bench]]
name = "read_empty_bench"
harness = false
[[bench]]
name = "write_bench"
harness = false
[[bench]]
name = "mt_read_bench"
harness = false
[[bench]]
name = "mpmc_mt_read_write_bench"
harness = false
[[bench]]
name = "spmc_mt_read_write_bench"
harness = false