mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
The `tokio-async-await` crate is no longer a facade. Instead, the `tokio` crate provides a feature flag to enable async/await support.
21 lines
498 B
TOML
21 lines
498 B
TOML
[package]
|
|
name = "tokio-channel"
|
|
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.1.x" git tag.
|
|
version = "0.1.0"
|
|
authors = ["Carl Lerche <[email protected]>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://tokio.rs"
|
|
documentation = "https://docs.rs/tokio-channel/0.1.0"
|
|
description = """
|
|
Channels for asynchronous communication using Tokio.
|
|
"""
|
|
categories = ["asynchronous"]
|
|
|
|
[dependencies]
|
|
futures = "0.1.23"
|