Files
tokio/tokio-util/Cargo.toml
T

50 lines
1.1 KiB
TOML
Raw Normal View History

2018-06-04 22:36:06 -05:00
[package]
2019-10-22 10:13:49 -07:00
name = "tokio-util"
2018-06-04 22:36:06 -05:00
# When releasing to crates.io:
# - Remove path dependencies
2018-06-04 22:36:06 -05:00
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
2018-06-04 22:36:06 -05:00
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
2019-11-26 09:17:27 -08:00
version = "0.2.0"
2019-05-14 10:27:36 -07:00
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
2018-06-04 22:36:06 -05:00
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-11-26 09:17:27 -08:00
documentation = "https://docs.rs/tokio-util/0.2.0/tokio_util"
2018-06-04 22:36:06 -05:00
description = """
2019-10-22 10:13:49 -07:00
Additional utilities for working with Tokio.
2018-06-04 22:36:06 -05:00
"""
categories = ["asynchronous"]
2019-11-22 15:55:10 -08:00
[features]
# No features on by default
default = []
# Shorthand for enabling everything
full = ["codec", "udp"]
codec = []
udp = ["tokio/udp"]
2018-06-04 22:36:06 -05:00
[dependencies]
2019-11-26 09:17:27 -08:00
tokio = { version = "0.2.0", path = "../tokio" }
2019-11-26 09:17:27 -08:00
bytes = "0.5.0"
2019-11-07 05:09:10 +09:00
futures-core = "0.3.0"
futures-sink = "0.3.0"
2019-06-27 18:10:29 +01:00
log = "0.4"
pin-project-lite = "0.1.1"
2019-06-27 18:10:29 +01:00
[dev-dependencies]
2019-11-26 09:17:27 -08:00
tokio = { version = "0.2.0", path = "../tokio", features = ["full"] }
tokio-test = { version = "0.2.0", path = "../tokio-test" }
futures = "0.3.0"
[package.metadata.docs.rs]
all-features = true
2019-11-22 15:55:10 -08:00
rustdoc-args = ["--cfg", "docsrs"]