-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 761 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 761 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
[package]
name = "ringbuffer"
version = "0.16.0"
authors = [
"Vivian Roest <[email protected]>",
"Jana Dönszelmann <[email protected]>",
]
edition = "2021"
rust-version = "1.79"
description = "A fixed-size circular buffer"
repository = "https://github.com/NULLx76/ringbuffer/"
keywords = ["ring", "cyclic", "circular", "buffer", "no-std"]
categories = ["data-structures"]
license = "MIT"
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
compiletest_rs = "0.10.0"
[features]
default = ["alloc"]
# disable the alloc based ringbuffer, to make RingBuffers work in no_alloc environments
alloc = []
[[bench]]
name = "bench"
harness = false
[profile.bench]
opt-level = 3
lto = true
[profile.release]
opt-level = 3
lto = true