[package] name = "iterator_item" version = "0.2.0" authors = ["Esteban Küber "] edition = "2021" license = "MIT OR Apache-2.0" description = "a generator syntax experiment" repository = "https://github.com/estebank/iterator_item" documentation = "https://docs.rs/iterator_item" keywords = ["iterators", "generators", "stream"] [dependencies] iterator_item_macros = { path = "./iterator_item_macros", version = "0.1.0" } futures = "0.3.17" [dev-dependencies] tokio = { version = "1.13", features = ["macros", "rt"] } [features] # For now this isn't yet useful, as `Stream` is in flux (its API changed and being renamed to # `AsyncIterator`), but can be used in the future (or with a little bit of duplicated output in the # `async fn*` desugaring): # https://rust-lang.github.io/wg-async-foundations/vision/roadmap/async_iter/traits.html std_async_iter = [] [workspace]