mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-02 00:00:11 +02:00
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "tokio-signal"
|
|
# When releasing to crates.io:
|
|
# - Remove path dependencies
|
|
# - Update html_root_url.
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - README.md
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.2.x" git tag.
|
|
version = "0.2.9"
|
|
authors = ["Tokio Contributors <[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.9/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 = "0.1.0"
|
|
tokio-executor = "0.1.0"
|
|
tokio-io = "0.1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
mio-uds = "0.6"
|
|
signal-hook-registry = "~1"
|
|
|
|
[dev-dependencies]
|
|
tokio = "0.1.8"
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
version = "0.3"
|
|
features = ["consoleapi", "minwindef", "wincon"]
|