-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 676 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 676 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
[package]
name = "sluice"
version = "0.6.0"
authors = ["Stephen M. Coakley <me@stephencoakley.com>"]
edition = "2021"
description = "Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels"
documentation = "https://docs.rs/sluice"
repository = "https://github.com/sagebind/sluice"
readme = "README.md"
keywords = ["buffer", "pipe", "channel"]
categories = ["asynchronous", "concurrency", "data-structures"]
license = "MIT"
rust-version = "1.74"
[dependencies]
async-channel = "2"
futures-core = "0.3"
futures-io = "0.3"
[dev-dependencies]
criterion = "0.8"
futures = "0.3"
quickcheck = "1.1"
quickcheck_macros = "1.2"
[[bench]]
name = "pipe"
harness = false