mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-17 00:00:11 +02:00
31 lines
772 B
TOML
31 lines
772 B
TOML
[package]
|
|
name = "tokio-signal"
|
|
version = "0.1.2"
|
|
authors = ["Alex Crichton <[email protected]>"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/alexcrichton/tokio-signal"
|
|
homepage = "https://github.com/alexcrichton/tokio-signal"
|
|
documentation = "https://docs.rs/tokio-signal/0.1"
|
|
description = """
|
|
An implementation of an asynchronous Unix signal handling backed futures.
|
|
"""
|
|
categories = ["asynchronous"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "alexcrichton/tokio-signal" }
|
|
appveyor = { repository = "alexcrichton/tokio-signal" }
|
|
|
|
[dependencies]
|
|
futures = "0.1.11"
|
|
mio = "0.6.5"
|
|
tokio-core = "0.1.6"
|
|
tokio-io = "0.1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
mio-uds = "0.6"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
kernel32-sys = "0.2"
|