Files
tokio/Cargo.toml
T

24 lines
594 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-01-06 11:39:38 -08:00
version = "0.1.3"
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"
homepage = "https://github.com/tokio-rs/tokio-core"
2017-01-09 16:40:16 -08:00
documentation = "https://docs.rs/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]
2016-11-22 09:40:35 -08:00
futures = "0.1.4"
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 }
2016-12-08 16:30:18 -08:00
libc = "0.2"