Files
tokio/Cargo.toml
T

24 lines
689 B
TOML
Raw Normal View History

2016-07-30 17:53:12 -07:00
[package]
name = "futures-mio"
version = "0.1.0"
authors = ["Alex Crichton <[email protected]>"]
2016-07-31 13:53:58 -07:00
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
homepage = "https://github.com/alexcrichton/futures-rs"
documentation = "http://alexcrichton.com/futures-rs/futures_mio/"
description = """
Bindings from the `futures` crate to the `mio` crate to get I/O in the form of
futures and streams.
"""
2016-07-30 17:53:12 -07:00
[dependencies]
2016-07-31 13:53:58 -07:00
futures = { path = "..", version = "0.1.0" }
futures-io = { path = "../futures-io", version = "0.1.0" }
2016-07-30 17:53:12 -07:00
log = "0.3"
2016-08-15 10:24:20 -07:00
mio = { git = "https://github.com/carllerche/mio" }
2016-07-30 17:53:12 -07:00
scoped-tls = "0.1.0"
slab = "0.2.0"
[dev-dependencies]
env_logger = "0.3"