Files
tokio/Cargo.toml
T

33 lines
787 B
TOML
Raw Normal View History

2016-07-30 17:53:12 -07:00
[package]
2016-08-26 14:30:46 -07:00
name = "tokio-core"
2017-07-24 21:36:19 -07:00
version = "0.1.9"
2016-07-30 17:53:12 -07:00
authors = ["Alex Crichton <[email protected]>"]
2016-07-31 13:53:58 -07:00
license = "MIT/Apache-2.0"
2016-08-26 14:30:46 -07:00
repository = "https://github.com/tokio-rs/tokio-core"
2017-01-11 09:21:01 -08:00
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-core/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]
travis-ci = { repository = "tokio-rs/tokio-core" }
appveyor = { repository = "alexcrichton/tokio-core" }
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"
2016-07-30 17:53:12 -07:00
scoped-tls = "0.1.0"
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 }
2016-12-08 16:30:18 -08:00
libc = "0.2"
2017-09-10 08:54:35 -07:00
num_cpus = "1.0"