[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.3.x" git tag. version = "0.3.0" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" documentation = "https://docs.rs/tokio-signal/0.2.8/tokio_signal" description = """ An implementation of an asynchronous Unix signal handling backed futures. """ categories = ["asynchronous"] publish = false [badges] travis-ci = { repository = "tokio-rs/tokio" } appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" } [dependencies] futures = "0.1.11" lazy_static = "1" tokio-reactor = { version = "0.2.0", path = "../tokio-reactor" } tokio-executor = { version = "0.2.0", path = "../tokio-executor" } tokio-io = { version = "0.2.0", path = "../tokio-io" } [target.'cfg(unix)'.dependencies] libc = "0.2" mio = "0.6.14" mio-uds = "0.6" signal-hook-registry = "~1" [dev-dependencies] tokio = { version = "0.2.0", path = "../tokio" } tokio-timer = { version = "0.3.0", path = "../tokio-timer" } [target.'cfg(windows)'.dependencies.winapi] version = "0.3" features = ["consoleapi", "minwindef", "wincon"]