-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 873 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 873 Bytes
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
[package]
name = "yep-coc"
description = "Yet another circular buffer. This one happens to be a zero copy, MPMC, lock free queue."
version = "0.2.0"
edition = "2024"
readme = "README.md"
repository = "https://github.com/richkcho/yep-coc"
keywords = ["circular", "queue", "zero-copy", "mpmc", "lock-free"]
categories = ["concurrency", "data-structures"]
license = "LGPL-2.1-or-later"
[workspace]
members = ["test_support"]
[features]
default = []
futex = ["wait_on_address"]
[dev-dependencies]
clap = { version = "4.4", features = ["derive"] }
test_support = {path = "test_support"}
flume = "0.11"
criterion = { version = "0.7", features = ["html_reports"] }
core_affinity = "0.8"
[dependencies]
cfg-if = "1.0"
wait_on_address = { version = "0.1", optional = true }
[[bench]]
name = "spsc-throughput"
harness = false
[[bench]]
name = "mpmc-throughput"
harness = false