-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
33 lines (27 loc) · 813 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
33
[package]
name = "disruptor"
version = "3.2.0"
edition = "2021"
description = "Low latency inter-thread communication via a ringbuffer (inspired by the LMAX Disruptor)."
license = "MIT"
authors = ["Nicholas <[email protected]>"]
repository = "https://github.com/nicholassm/disruptor-rs"
categories = ["data-structures", "concurrency"]
keywords = ["disruptor", "ringbuffer", "message", "mpmc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam-utils = "0.8"
core_affinity = "0.8.1"
thiserror = "1.0"
[dev-dependencies]
criterion = "0.5"
crossbeam = "0.8"
[[bench]]
name = "spsc"
harness = false
[[bench]]
name = "mpsc"
harness = false
[[bench]]
name = "counters"
harness = false