Files
tokio/Cargo.toml
T

31 lines
726 B
TOML
Raw Normal View History

2016-09-06 23:00:17 -07:00
[package]
name = "tokio-signal"
2017-01-11 18:56:15 -08:00
version = "0.1.1"
2016-09-06 23:00:17 -07:00
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/tokio-signal"
homepage = "https://github.com/alexcrichton/tokio-signal"
2017-01-12 10:32:16 -08:00
documentation = "https://docs.rs/tokio-signal/0.1"
2016-09-06 23:00:17 -07:00
description = """
An implementation of an asynchronous Unix signal handling backed futures.
"""
[dependencies]
2016-09-09 22:04:04 -07:00
tokio-core = "0.1"
futures = "0.1.7"
lazy_static = "0.2"
nix = "0.7"
2016-09-06 23:00:17 -07:00
[target.'cfg(unix)'.dependencies]
2016-09-09 22:04:04 -07:00
tokio-uds = "0.1"
2016-09-06 23:00:17 -07:00
libc = "0.2"
mio = "0.6"
2016-09-08 17:13:18 -07:00
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
kernel32-sys = "0.2"
mio = "0.6"
2017-01-22 10:19:38 +01:00
[replace]
"tokio-core:0.1.3" = { git = "https://github.com/tokio-rs/tokio-core" }