1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "tokio-stream" 15version = "0.1.8" 16authors = ["Tokio Contributors <team@tokio.rs>"] 17description = "Utilities to work with `Stream` and `tokio`.\n" 18homepage = "https://tokio.rs" 19documentation = "https://docs.rs/tokio-stream/0.1.8/tokio_stream" 20categories = ["asynchronous"] 21license = "MIT" 22repository = "https://github.com/tokio-rs/tokio" 23[package.metadata.docs.rs] 24all-features = true 25rustc-args = ["--cfg", "docsrs"] 26rustdoc-args = ["--cfg", "docsrs"] 27[dependencies.futures-core] 28version = "0.3.0" 29 30[dependencies.pin-project-lite] 31version = "0.2.0" 32 33[dependencies.tokio] 34version = "1.8.0" 35features = ["sync"] 36 37[dependencies.tokio-util] 38version = "0.6.3" 39optional = true 40[dev-dependencies.async-stream] 41version = "0.3" 42 43[dev-dependencies.futures] 44version = "0.3" 45default-features = false 46 47[dev-dependencies.proptest] 48version = "1" 49 50[dev-dependencies.tokio] 51version = "1.2.0" 52features = ["full", "test-util"] 53 54[features] 55default = ["time"] 56fs = ["tokio/fs"] 57io-util = ["tokio/io-util"] 58net = ["tokio/net"] 59signal = ["tokio/signal"] 60sync = ["tokio/sync", "tokio-util"] 61time = ["tokio/time"] 62