Files
tokio/Cargo.toml
T

63 lines
1.4 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-03-09 11:41:31 -08:00
version = "0.1.3"
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 = [
"./",
"tokio-executor",
"tokio-io",
"tokio-reactor",
"tokio-threadpool",
]
2017-01-23 20:15:49 -08:00
[badges]
2017-10-24 16:30:16 -07:00
travis-ci = { repository = "tokio-rs/tokio" }
2018-02-07 13:28:29 -08:00
appveyor = { repository = "carllerche/tokio" }
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" }
tokio-executor = { version = "0.1.0", path = "tokio-executor" }
tokio-reactor = { version = "0.1.0", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1.0", path = "tokio-threadpool" }
2017-02-05 17:06:57 -08:00
bytes = "0.4"
log = "0.4"
2018-03-08 13:36:54 -08:00
mio = "0.6.14"
2017-09-07 20:53:54 -07:00
slab = "0.4"
2017-02-05 17:06:57 -08:00
iovec = "0.1"
2018-03-08 20:15:51 -08:00
futures = "0.1.18"
2016-07-30 17:53:12 -07:00
[dev-dependencies]
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"
[patch.crates-io]
tokio-io = { path = "tokio-io" }