Files
tokio/tokio-tcp/Cargo.toml
T

33 lines
789 B
TOML
Raw Normal View History

[package]
name = "tokio-tcp"
# When releasing to crates.io:
# - Update html_root_url.
2018-09-26 22:32:51 -07:00
# - Update doc url
2019-01-06 23:25:55 -08:00
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2019-01-06 23:25:55 -08:00
version = "0.1.3"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-01-06 23:25:55 -08:00
documentation = "https://docs.rs/tokio-tcp/0.1.3/tokio_tcp"
description = """
TCP bindings for tokio.
"""
categories = ["asynchronous"]
[dependencies]
tokio-io = { version = "0.1.6", path = "../tokio-io" }
2018-03-23 10:34:42 -07:00
tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
bytes = "0.4"
mio = "0.6.14"
iovec = "0.1"
2018-03-23 10:34:42 -07:00
futures = "0.1.19"
[dev-dependencies]
2018-08-10 21:37:45 +02:00
env_logger = { version = "0.5", default-features = false }
tokio = { path = ".." }