mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-16 00:00:12 +02:00
28 lines
760 B
TOML
28 lines
760 B
TOML
[package]
|
|
name = "futures-mio"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <[email protected]>"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
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.
|
|
"""
|
|
|
|
[dependencies]
|
|
futures = { path = "..", version = "0.1.0" }
|
|
futures-io = { path = "../futures-io", version = "0.1.0" }
|
|
log = "0.3"
|
|
mio = { git = "https://github.com/alexcrichton/mio", branch = "write-then-drop" }
|
|
scoped-tls = "0.1.0"
|
|
slab = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.3"
|
|
|
|
[lib]
|
|
test = false
|