forked from vorner/signal-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 950 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "signal-hook"
version = "0.1.10"
authors = ["Michal 'vorner' Vaner <[email protected]>"]
description = "Unix signal handling"
documentation = "https://docs.rs/signal-hook"
repository = "https://github.com/vorner/signal-hook"
readme = "README.md"
keywords = ["signal", "unix", "daemon"]
license = "Apache-2.0/MIT"
[badges]
travis-ci = { repository = "vorner/signal-hook" }
maintenance = { status = "actively-developed" }
[features]
mio-support = ["mio"]
tokio-support = ["futures", "mio-support", "tokio-reactor"]
[workspace]
members = [
"./",
"signal-hook-registry",
]
[dependencies]
libc = "~0.2"
futures = { version = "~0.1", optional = true }
mio = { version = "~0.6", optional = true }
signal-hook-registry = { version = "~1", path = "signal-hook-registry" }
tokio-reactor = { version = "~0.1", optional = true }
[dev-dependencies]
version-sync = "~0.8"
tokio = "~0.1"
[package.metadata.docs.rs]
all-features = true