-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
56 lines (49 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "futures-concurrency"
version = "7.6.2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yoshuawuyts/futures-concurrency"
documentation = "https://docs.rs/futures-concurrency"
description = "Structured concurrency operations for async Rust"
readme = "README.md"
edition = "2021"
keywords = ["async", "concurrency"]
categories = ["asynchronous", "concurrency"]
authors = ["Yoshua Wuyts <[email protected]>"]
rust-version = "1.75.0"
[profile.bench]
debug = true
[lib]
bench = false
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "compare"
harness = false
[features]
default = ["std"]
std = ["alloc", "futures-lite/std"]
alloc = ["dep:fixedbitset", "dep:slab", "dep:smallvec", "futures-lite/alloc"]
[dependencies]
fixedbitset = { version = "0.5.7", default-features = false, optional = true }
futures-core = { version = "0.3", default-features = false }
futures-lite = { version = "2.5.0", default-features = false }
pin-project = "1.1"
slab = { version = "0.4.9", optional = true }
smallvec = { version = "1.13", optional = true }
futures-buffered = "0.2.9"
[dev-dependencies]
async-io = "2.4"
async-std = { version = "1.13.0", features = ["attributes"] }
criterion = { version = "0.5", features = [
"async",
"async_futures",
"html_reports",
] }
futures = "0.3"
futures-time = "3.0.0"
itertools = "0.13"
lending-stream = "1.0.1"
rand = "0.8.5"
tokio = { version = "1.41", features = ["macros", "time", "rt-multi-thread"] }