Files
tokio/Cargo.toml
T

40 lines
908 B
TOML
Raw Normal View History

2016-07-30 17:53:12 -07:00
[package]
2017-10-24 16:30:16 -07:00
name = "tokio"
version = "0.1.0"
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"]
[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"
2016-07-30 17:53:12 -07:00
log = "0.3"
mio = "0.6.10"
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-08-24 08:16:04 -07:00
futures = "0.1.15"
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 }
2017-09-11 14:40:18 -07:00
flate2 = { version = "0.2", features = ["tokio"] }
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"