Files
tokio/Cargo.toml
T

53 lines
1.0 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.
2017-10-24 16:30:16 -07:00
version = "0.1.0"
2018-01-30 13:26:59 -08:00
2017-10-24 16:30:16 -07:00
authors = ["Tokio Authors <[email protected]>"]
2016-07-31 13:53:58 -07:00
license = "MIT/Apache-2.0"
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 = """
2016-08-26 14:30:46 -07:00
Core I/O and event loop primitives for asynchronous I/O in Rust. Foundation for
the rest of the tokio crates.
2016-07-31 13:53:58 -07:00
"""
2017-01-23 20:15:49 -08:00
categories = ["asynchronous"]
[workspace]
members = [
"./",
"tokio-io",
]
2017-01-23 20:15:49 -08:00
[badges]
2017-10-24 16:30:16 -07:00
travis-ci = { repository = "tokio-rs/tokio" }
appveyor = { repository = "alexcrichton/tokio" }
2016-07-30 17:53:12 -07:00
[dependencies]
2017-02-05 17:06:57 -08:00
bytes = "0.4"
log = "0.4"
2018-01-08 09:34:33 -08:00
mio = "0.6.12"
2017-09-07 20:53:54 -07:00
slab = "0.4"
2017-02-05 17:06:57 -08:00
iovec = "0.1"
tokio-io = "0.1"
2017-11-16 22:42:36 -07:00
futures = "0.1.16"
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"