Files
tokio/tokio-uds/Cargo.toml
T

43 lines
1.0 KiB
TOML
Raw Normal View History

2018-05-14 14:48:32 -07:00
[package]
name = "tokio-uds"
# When releasing to crates.io:
# - Remove path dependencies
2018-05-14 14:48:32 -07:00
# - 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.
2019-05-14 10:27:36 -07:00
# - Create "v0.3.x" git tag.
version = "0.3.0"
edition = "2018"
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"]
2019-05-14 10:27:36 -07:00
publish = false
2018-05-14 14:48:32 -07:00
2019-07-09 05:58:40 +08:00
[features]
async-traits = []
2019-07-09 05:58:40 +08:00
2018-05-14 14:48:32 -07:00
[dependencies]
2018-06-06 14:09:07 -07:00
bytes = "0.4.8"
futures-core-preview = { version = "0.3.0-alpha.17" }
2018-06-06 14:09:07 -07:00
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"
2019-05-14 10:27:36 -07:00
tokio-codec = { version = "0.2.0", path = "../tokio-codec" }
tokio-reactor = { version = "0.2.0", path = "../tokio-reactor" }
tokio-io = { version = "0.2.0", path = "../tokio-io" }
2018-05-14 14:48:32 -07:00
[dev-dependencies]
2019-05-14 10:27:36 -07:00
tokio = { version = "0.2.0", path = "../tokio" }
2018-08-10 21:37:45 +02:00
tempfile = "3"
2019-07-09 05:58:40 +08:00
futures-preview = "0.3.0-alpha.17"