aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2021-02-18 09:41:06 +0100
committerJeff Vander Stoep <jeffv@google.com>2021-02-18 10:19:30 +0100
commit647493e10df459f2e4cc4cab77918fcba6a887dc (patch)
tree3bc261bbf5db0e4e8e5c3e3f55140fd6a182a560 /Cargo.toml.orig
parenta0b20b1c027183c3ccefef42435b43ba2b62b15e (diff)
downloadasync-stream-647493e10df459f2e4cc4cab77918fcba6a887dc.tar.gz
Import async-stream v0.3.0android-s-preview-1
Bug: 179649848 Test: atest Change-Id: Ieee7b08084c058ea91c56b42e42c87b651ccdb6c
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig30
1 files changed, 30 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..aca3396
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,30 @@
+[package]
+name = "async-stream"
+# When releasing to crates.io:
+# - Update version number
+# - lib.rs: html_root_url.
+# - README.md
+# - Update CHANGELOG.md
+# - Update doc URL.
+# - Cargo.toml
+# - README.md
+# - Create git tag
+version = "0.3.0"
+edition = "2018"
+license = "MIT"
+authors = ["Carl Lerche <me@carllerche.com>"]
+description = "Asynchronous streams using async & await notation"
+documentation = "https://docs.rs/async-stream/0.3.0/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.0", path = "../async-stream-impl" }
+futures-core = "0.3"
+
+[dev-dependencies]
+futures-util = "0.3"
+tokio = { version = "0.2", features = ["full"] }
+tokio-test = "0.2"
+trybuild = "1"