-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
40 lines (37 loc) · 1.05 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
[package]
name = "deluge"
version = "0.2.1"
authors = ["Michał Kawalec <[email protected]>"]
license = "MPL-2.0"
description = """
A highly concurrent stream library driving the underlying futures
either concurrently or in parallel to process streaming operations
as quickly as possible.
"""
readme = "README.md"
homepage = "https://github.com/mkawalec/deluge"
repository = "https://github.com/mkawalec/deluge"
documentation = "https://docs.rs/deluge/latest/deluge/"
keywords = ["futures", "async", "deluge"]
categories = ["asynchronous"]
edition = "2021"
exclude = [
".github/*",
".gitignore",
"Makefile",
"images/*",
]
[features]
default = ["tokio"]
async-runtime = []
tokio = ["dep:tokio", "async-runtime"]
async-std = ["dep:async-std", "async-runtime"]
[dependencies]
async-std = { version = "1.12", features = ["attributes"], optional = true }
futures = "0.3"
num_cpus = "1.13"
pin-project = "1.0"
tokio = { version = "1.20", features = ["sync"], optional = true }
[dev-dependencies]
more-asserts = "0.3"
tokio = { version = "1.20", features = ["full"] }