mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-24 00:00:11 +02:00
This also bumps the following sub crate versions: * tokio-current-thread (0.1.4) * tokio-reactor (0.1.7) * tokio-signal (0.2.7) * tokio-threadpool (0.1.9) * tokio-timer (0.2.8) * tokio-udp (0.1.3) * tokio-uds (0.2.4)
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "tokio-signal"
|
|
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update CHANGELOG.md.
|
|
# - Update doc URL.
|
|
# - Create "v0.2.x" git tag.
|
|
version = "0.2.7"
|
|
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.7/tokio_signal"
|
|
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"]
|