-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 727 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
[package]
authors = ["Jakub Liska <pragmaxim@gmail.com>"]
description = "A stream adapter that buffers elements. Useful for unstable downstream consumers."
license = "MIT OR Apache-2.0"
name = "buffer"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/pragmaxim-com/buffer.rs"
[lib]
bench = false
[dependencies]
tokio = { version = "1.38", features = ["full"] }
tokio-stream = "0.1.15"
futures = "0.3"
chrono = "0.4.38"
pin-project-lite = "0.2"
[dev-dependencies]
tokio = { version = "1.38", features = ["full", "test-util"] }
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
[dev-dependencies.doc-comment]
version = "0.3"
[[bench]]
name = "buffer_benchmark"
harness = false