-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (24 loc) · 856 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
[package]
name = "future-queue"
version = "0.3.0"
description = "Adapters to manage a queue of futures, where each future can have a different weight."
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/nextest-rs/future-queue"
documentation = "https://docs.rs/future-queue"
resolver = "2"
rust-version = "1.70"
categories = ["asynchronous"]
keywords = ["stream", "futures", "async", "buffer_unordered"]
[dependencies]
fnv = "1.0.7"
futures-util = { version = "0.3.31", default-features = false, features = ["std"] }
pin-project-lite = "0.2.15"
[dev-dependencies]
futures = "0.3.31"
maplit = "1.0.2"
proptest = { version = "1.0.0", features = ["timeout"] }
proptest-derive = "0.4.0"
tokio = { version = "1.21.2", features = ["macros", "sync", "test-util", "time"] }
tokio-stream = { version = "0.1.16" }