aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 06ccf45d86cae5df31c1aaf3467a9affad858c08 (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
25
26
[package]
name = "async-stream"
# When releasing to crates.io:
# - Update version number
#   - README.md
# - Update CHANGELOG.md
# - Create git tag
version = "0.3.2"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Asynchronous streams using async & await notation"
documentation = "https://docs.rs/async-stream"
homepage = "https://github.com/tokio-rs/async-stream"
repository = "https://github.com/tokio-rs/async-stream"
readme = "README.md"

[dependencies]
async-stream-impl = { version = "=0.3.2", path = "../async-stream-impl" }
futures-core = "0.3"

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