-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 865 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (26 loc) · 865 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
[package]
name = "circular-buffer"
version = "1.2.0"
authors = ["Andrea Corbellini <corbellini.andrea@gmail.com>"]
edition = "2024"
rust-version = "1.87"
license = "BSD-3-Clause"
description = "Efficient, fixed-size, overwriting circular buffer"
repository = "https://github.com/andreacorbellini/rust-circular-buffer"
keywords = ["circular-buffer", "buffer", "queue", "fifo", "small"]
categories = ["data-structures", "no-std"]
[features]
default = ["std"]
alloc = []
std = ["alloc"]
[dependencies]
embedded-io = { version = "0.6", default-features = false, optional = true }
embedded-io-async = { version = "0.6", default-features = false, optional = true }
[dev-dependencies]
criterion = { version = "0.7.0" }
drop-tracker = { version = "0.1.3" }
futures-lite = { version = "2.6" }
rand = { version = "0.9.2" }
[[bench]]
name = "benchmark"
harness = false