Files
tokio/Cargo.toml
T

23 lines
639 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"
2016-07-30 17:53:12 -07:00
version = "0.1.0"
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"
homepage = "https://github.com/tokio-rs/tokio-core"
documentation = "https://tokio-rs.github.io/tokio-core"
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
"""
2016-07-30 17:53:12 -07:00
[dependencies]
futures = { git = "https://github.com/alexcrichton/futures-rs" }
2016-07-30 17:53:12 -07:00
log = "0.3"
2016-09-01 22:14:26 -07:00
mio = "0.6"
2016-07-30 17:53:12 -07:00
scoped-tls = "0.1.0"
2016-09-01 22:14:26 -07:00
slab = "0.3"
2016-07-30 17:53:12 -07:00
[dev-dependencies]
2016-10-12 23:34:58 -07:00
env_logger = { version = "0.3", default-features = false }