Files
tokio/tokio-udp/Cargo.toml
T

36 lines
1011 B
TOML
Raw Normal View History

[package]
name = "tokio-udp"
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0"
edition = "2018"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
2018-11-21 17:11:31 -08:00
documentation = "https://docs.rs/tokio-udp/0.1.3/tokio_udp"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
UDP bindings for tokio.
"""
categories = ["asynchronous"]
2019-05-14 10:27:36 -07:00
publish = false
[dependencies]
2019-06-27 02:41:36 +08:00
# tokio-codec = { version = "0.2.0", path = "../tokio-codec" }
# tokio-io = { version = "0.2.0", path = "../tokio-io" }
2019-05-14 10:27:36 -07:00
tokio-reactor = { version = "0.2.0", path = "../tokio-reactor" }
2019-06-27 02:41:36 +08:00
# bytes = "0.4"
mio = "0.6.14"
log = "0.4"
futures-core-preview = "0.3.0-alpha.17"
2018-03-23 10:34:42 -07:00
[dev-dependencies]
2018-08-10 21:37:45 +02:00
env_logger = { version = "0.5", default-features = false }
2019-06-27 02:41:36 +08:00
tokio = { version = "0.2.0", path = "../tokio", default-features = false, features = ["rt-full"] }