aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 1407a68907aa7a6b2b479bc171ad05b8594738b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "async-stream"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag
version = "0.3.4"
edition = "2018"
rust-version = "1.45"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Asynchronous streams using async & await notation"
repository = "https://github.com/tokio-rs/async-stream"

[dependencies]
async-stream-impl = { version = "=0.3.4", path = "../async-stream-impl" }
futures-core = "0.3"
pin-project-lite = "0.2"

[dev-dependencies]
futures-util = "0.3"
rustversion = "1"
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4"
trybuild = "1"