-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (30 loc) · 966 Bytes
/
Cargo.toml
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
[package]
name = "futures-buffered"
version = "0.2.9"
edition = "2021"
description = "future concurrency primitives with emphasis on performance and low memory usage"
license = "MIT"
repository = "https://github.com/conradludgate/futures-buffered"
authors = ["Conrad Ludgate <[email protected]"]
categories = ["asynchronous"]
rust-version = "1.75.0"
[lib]
bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-core = { version = "0.3.21", default-features = false }
pin-project-lite = "0.2"
diatomic-waker = "0.2.0"
cordyceps = "0.3.2"
[dev-dependencies]
futures = "0.3.21"
futures-test = "0.3.21"
hyper = { version = "1", features = ["client", "http2"] }
hyper-util = { version = "0.1.3", features = ["tokio"] }
tokio = { version = "1", features = ["full", "macros", "test-util"] }
reqwest = "0.12.4"
rand = "0.8"
divan = "0.1.14"
[[bench]]
name = "batch"
harness = false