-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (35 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
44 lines (35 loc) · 1.14 KB
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
38
39
40
41
42
43
44
[package]
name = "futures-buffered"
version = "0.2.13"
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 <conradludgate@gmail.com"]
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
[features]
default = []
tokio-coop = ["dep:tokio"]
[dependencies]
futures-core = { version = "0.3", default-features = false }
pin-project-lite = "0.2"
diatomic-waker = "0.2"
cordyceps = "0.3"
spin = { version = "0.10", default-features = false, features = ["spin_mutex"] }
tokio = { version = "1.47.0", features = ["rt"], optional = true }
[dev-dependencies]
futures = "0.3.31"
futures-test = "0.3.31"
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.9.0"
divan = "0.1.21"
[[bench]]
name = "batch"
harness = false