Files
tokio/Cargo.toml
T

72 lines
1.8 KiB
TOML
Raw Normal View History

2016-07-30 17:53:12 -07:00
[package]
2017-10-24 16:30:16 -07:00
name = "tokio"
2018-01-30 13:26:59 -08:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2018-06-06 20:14:35 -07:00
version = "0.1.7"
2018-02-07 13:28:29 -08:00
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
2017-10-24 16:30:16 -07:00
repository = "https://github.com/tokio-rs/tokio"
2017-01-11 09:21:01 -08:00
homepage = "https://tokio.rs"
2017-10-24 16:30:16 -07:00
documentation = "https://docs.rs/tokio/0.1"
2016-07-31 13:53:58 -07:00
description = """
2018-02-07 13:28:29 -08:00
An event-driven, non-blocking I/O platform for writing asynchronous I/O
backed applications.
2016-07-31 13:53:58 -07:00
"""
categories = ["asynchronous", "network-programming"]
2018-02-07 13:28:29 -08:00
keywords = ["io", "async", "non-blocking", "futures"]
2017-01-23 20:15:49 -08:00
[workspace]
members = [
"./",
2018-06-04 22:36:06 -05:00
"tokio-codec",
"tokio-executor",
2018-05-02 11:19:58 -07:00
"tokio-fs",
"tokio-io",
"tokio-reactor",
"tokio-threadpool",
2018-03-28 22:26:47 -07:00
"tokio-timer",
"tokio-tcp",
"tokio-udp",
2018-05-14 14:48:32 -07:00
"tokio-uds",
]
2017-01-23 20:15:49 -08:00
[badges]
2017-10-24 16:30:16 -07:00
travis-ci = { repository = "tokio-rs/tokio" }
2018-04-02 02:16:22 +03:00
appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
2016-07-30 17:53:12 -07:00
[dependencies]
2018-03-08 20:15:51 -08:00
tokio-io = { version = "0.1.6", path = "tokio-io" }
2018-03-30 15:32:25 -07:00
tokio-executor = { version = "0.1.2", path = "tokio-executor" }
2018-03-23 10:34:42 -07:00
tokio-reactor = { version = "0.1.1", path = "tokio-reactor" }
2018-06-06 20:14:35 -07:00
tokio-threadpool = { version = "0.1.4", path = "tokio-threadpool" }
tokio-tcp = { version = "0.1.0", path = "tokio-tcp" }
tokio-udp = { version = "0.1.0", path = "tokio-udp" }
2018-06-06 20:14:35 -07:00
tokio-timer = { version = "0.2.4", path = "tokio-timer" }
2018-05-02 11:19:58 -07:00
tokio-fs = { version = "0.1.0", path = "tokio-fs" }
2018-03-30 11:50:02 -07:00
2018-03-30 15:32:25 -07:00
futures = "0.1.20"
2018-03-23 10:34:42 -07:00
2018-03-30 11:50:02 -07:00
# Needed until `reactor` is removed from `tokio`.
mio = "0.6.14"
2016-07-30 17:53:12 -07:00
[dev-dependencies]
tokio-codec = { version = "0.1.0", path = "tokio-codec" }
bytes = "0.4"
2017-06-16 08:41:09 +02:00
env_logger = { version = "0.4", default-features = false }
2018-01-02 19:03:54 +01:00
flate2 = { version = "1", features = ["tokio"] }
2017-09-11 14:40:18 -07:00
futures-cpupool = "0.1"
2017-09-10 21:45:23 -07:00
http = "0.1"
httparse = "1.0"
2016-12-08 16:30:18 -08:00
libc = "0.2"
2017-09-10 08:54:35 -07:00
num_cpus = "1.0"
2017-09-10 21:45:23 -07:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
time = "0.1"