-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (37 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
49 lines (37 loc) · 827 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "rbuffer"
version = "0.1.2"
edition = "2024"
rust-version = "1.85"
description = "Lock-free fixed-size SPSC and MPSC ring buffers for low-latency messaging."
license = "MIT"
repository = "https://github.com/aleexeyy/rbuffer"
readme = "README.md"
keywords = ["ring-buffer", "lock-free", "spsc", "mpsc", "no-std"]
categories = ["concurrency", "data-structures", "no-std"]
homepage = "https://github.com/aleexeyy/rbuffer"
exclude = [
"benches/**",
"src/bin/**",
"target/**",
".cargo/**",
]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = 3
[features]
default = []
std = []
profiling = []
[dev-dependencies]
criterion = "0.8.2"
core_affinity = "0.8.3"
[[bench]]
name = "spsc_bench"
harness = false
[[bench]]
name = "mpsc_bench"
harness = false
[dependencies]