You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
4 months ago
|
[package]
|
||
|
name = "tokio-stream"
|
||
|
# When releasing to crates.io:
|
||
|
# - Remove path dependencies
|
||
|
# - Update doc url
|
||
|
# - Cargo.toml
|
||
|
# - Update CHANGELOG.md.
|
||
|
# - Create "tokio-stream-0.1.x" git tag.
|
||
|
version = "0.1.5"
|
||
|
edition = "2018"
|
||
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
||
|
license = "MIT"
|
||
|
repository = "https://github.com/tokio-rs/tokio"
|
||
|
homepage = "https://tokio.rs"
|
||
|
documentation = "https://docs.rs/tokio-stream/0.1.5/tokio_stream"
|
||
|
description = """
|
||
|
Utilities to work with `Stream` and `tokio`.
|
||
|
"""
|
||
|
categories = ["asynchronous"]
|
||
|
|
||
|
[features]
|
||
|
default = ["time"]
|
||
|
time = ["tokio/time"]
|
||
|
net = ["tokio/net"]
|
||
|
io-util = ["tokio/io-util"]
|
||
|
fs = ["tokio/fs"]
|
||
|
sync = ["tokio/sync", "tokio-util"]
|
||
|
signal = ["tokio/signal"]
|
||
|
|
||
|
[dependencies]
|
||
|
futures-core = { version = "0.3.0" }
|
||
|
pin-project-lite = "0.2.0"
|
||
|
tokio = { version = "1.2.0", path = "../tokio", features = ["sync"] }
|
||
|
tokio-util = { version = "0.6.3", optional = true }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
tokio = { version = "1.2.0", path = "../tokio", features = ["full", "test-util"] }
|
||
|
async-stream = "0.3"
|
||
|
tokio-test = { path = "../tokio-test" }
|
||
|
futures = { version = "0.3", default-features = false }
|
||
|
|
||
|
proptest = "0.10.0"
|
||
|
|
||
|
[package.metadata.docs.rs]
|
||
|
all-features = true
|
||
|
rustdoc-args = ["--cfg", "docsrs"]
|