Files
tokio/tokio-uds/Cargo.toml
T

36 lines
901 B
TOML
Raw Normal View History

2018-05-14 14:48:32 -07:00
[package]
name = "tokio-uds"
# When releasing to crates.io:
# - Update html_root_url.
2018-09-27 20:05:23 -07:00
# - Update doc url
2019-01-06 23:25:55 -08:00
# - Cargo.toml
# - README.md
2018-05-14 14:48:32 -07:00
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
2019-01-06 23:25:55 -08:00
version = "0.2.5"
2018-05-14 14:48:32 -07:00
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
2019-01-06 23:25:55 -08:00
documentation = "https://docs.rs/tokio-uds/0.2.5/tokio_uds/"
2018-05-14 14:48:32 -07:00
description = """
Unix Domain sockets for Tokio
"""
categories = ["asynchronous"]
[dependencies]
2018-06-06 14:09:07 -07:00
bytes = "0.4.8"
futures = "0.1.21"
iovec = "0.1.2"
libc = "0.2.42"
log = "0.4.2"
2018-05-14 14:48:32 -07:00
mio = "0.6.14"
mio-uds = "0.6.5"
2018-11-20 11:19:34 -06:00
tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
2018-05-14 14:48:32 -07:00
tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
tokio-io = { version = "0.1.6", path = "../tokio-io" }
[dev-dependencies]
tokio = { version = "0.1.6", path = "../" }
2018-08-10 21:37:45 +02:00
tempfile = "3"