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 = "2021" 14rust-version = "1.56" 15name = "tokio-stream" 16version = "0.1.14" 17authors = ["Tokio Contributors <team@tokio.rs>"] 18description = """ 19Utilities to work with `Stream` and `tokio`. 20""" 21homepage = "https://tokio.rs" 22categories = ["asynchronous"] 23license = "MIT" 24repository = "https://github.com/tokio-rs/tokio" 25resolver = "1" 26 27[package.metadata.docs.rs] 28all-features = true 29rustc-args = [ 30 "--cfg", 31 "docsrs", 32] 33rustdoc-args = [ 34 "--cfg", 35 "docsrs", 36] 37 38[dependencies.futures-core] 39version = "0.3.0" 40 41[dependencies.pin-project-lite] 42version = "0.2.0" 43 44[dependencies.tokio] 45version = "1.15.0" 46features = ["sync"] 47 48[dependencies.tokio-util] 49version = "0.7.0" 50optional = true 51 52[dev-dependencies.async-stream] 53version = "0.3" 54 55[dev-dependencies.futures] 56version = "0.3" 57default-features = false 58 59[dev-dependencies.parking_lot] 60version = "0.12.0" 61 62[dev-dependencies.tokio] 63version = "1.2.0" 64features = [ 65 "full", 66 "test-util", 67] 68 69[features] 70default = ["time"] 71fs = ["tokio/fs"] 72full = [ 73 "time", 74 "net", 75 "io-util", 76 "fs", 77 "sync", 78 "signal", 79] 80io-util = ["tokio/io-util"] 81net = ["tokio/net"] 82signal = ["tokio/signal"] 83sync = [ 84 "tokio/sync", 85 "tokio-util", 86] 87time = ["tokio/time"] 88