forked from agerasev/ringbuf
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 748 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 748 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
[package]
name = "ringbuf"
version = "0.2.6"
authors = ["Alexey Gerasev <alexey.gerasev@gmail.com>"]
edition = "2018"
description = "Lock-free SPSC FIFO ring buffer with direct access to inner data"
documentation = "https://docs.rs/ringbuf"
homepage = "https://github.com/nthend/ringbuf"
repository = "https://github.com/nthend/ringbuf.git"
readme = "README.md"
keywords = ["lock-free", "spsc", "ring-buffer", "rb", "fifo"]
categories = ["concurrency", "data-structures", "no-std"]
license = "MIT/Apache-2.0"
[features]
default = ["std"]
std = []
benchmark = []
[[example]]
name = "simple"
[[example]]
name = "message"
required-features = ["std"]
[dependencies]
cache-padded = "1.1.1"
common.path = "../common"
rand = "*"
libc.workspace = true