-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 773 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
[package]
name = "direct_ring_buffer"
version = "0.2.2"
edition = "2021"
authors = ["Seiji Ainoguchi <seiji.ainoguchi@gmail.com>"]
description = "A high-performance, lock-free ring buffer for single-producer, single-consumer scenarios."
homepage = "https://github.com/ain1084/direct_ring_buffer"
repository = "https://github.com/ain1084/direct_ring_buffer"
documentation = "https://docs.rs/direct_ring_buffer"
readme = "README.md"
keywords = ["ring-buffer", "lock-free", "spsc"]
categories = ["data-structures", "concurrency"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
rand = "0.9.2"
criterion = "0.7.0"
[[bench]]
name = "benchmarks"
harness = false