Files
tokio/tokio-signal/Cargo.toml
T
Michal 'vorner' Vaner 5f68b3aaa1 signal: Remove Apache license
Whole tokio is MIT only, unifying.
2018-09-14 23:28:56 +02:00

36 lines
997 B
TOML

[package]
name = "tokio-signal"
version = "0.2.5"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
documentation = "https://docs.rs/tokio-signal/0.2"
description = """
An implementation of an asynchronous Unix signal handling backed futures.
"""
categories = ["asynchronous"]
[badges]
travis-ci = { repository = "tokio-rs/tokio" }
appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
[dependencies]
futures = "0.1.11"
mio = "0.6.14"
tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
tokio-io = { version = "0.1", path = "../tokio-io" }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
mio-uds = "0.6"
signal-hook = "0.1"
[dev-dependencies]
tokio = { version = "0.1.8", path = ".." }
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["minwindef", "wincon"]