• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.65"
15name = "async-stream"
16version = "0.3.6"
17authors = ["Carl Lerche <me@carllerche.com>"]
18build = false
19autobins = false
20autoexamples = false
21autotests = false
22autobenches = false
23description = "Asynchronous streams using async & await notation"
24readme = "README.md"
25license = "MIT"
26repository = "https://github.com/tokio-rs/async-stream"
27
28[lib]
29name = "async_stream"
30path = "src/lib.rs"
31
32[[example]]
33name = "tcp_accept"
34path = "examples/tcp_accept.rs"
35
36[[test]]
37name = "for_await"
38path = "tests/for_await.rs"
39
40[[test]]
41name = "spans_preserved"
42path = "tests/spans_preserved.rs"
43
44[[test]]
45name = "stream"
46path = "tests/stream.rs"
47
48[[test]]
49name = "try_stream"
50path = "tests/try_stream.rs"
51
52[dependencies.async-stream-impl]
53version = "=0.3.6"
54
55[dependencies.futures-core]
56version = "0.3"
57
58[dependencies.pin-project-lite]
59version = "0.2"
60
61[dev-dependencies.futures-util]
62version = "0.3"
63
64[dev-dependencies.rustversion]
65version = "1"
66
67[dev-dependencies.tokio]
68version = "1"
69features = ["full"]
70
71[dev-dependencies.trybuild]
72version = "1"
73