mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-28 12:10:37 +00:00

- Move `tokio` into its own directory. - Remove `path` dependencies. - Run tests with once with crates.io dep and once with patched dep.
42 lines
998 B
TOML
42 lines
998 B
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 <alex@alexcrichton.com>"]
|
|
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 = "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 = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = "0.1.8"
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
version = "0.3"
|
|
features = ["minwindef", "wincon"]
|