-
Notifications
You must be signed in to change notification settings - Fork 71
/
Cargo.toml
48 lines (41 loc) · 1.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
[package]
name = "signal-hook"
version = "0.3.17"
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>",
"Thomas Himmelstoss <thimm@posteo.de>",
]
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"
edition = "2018"
[badges]
maintenance = { status = "actively-developed" }
[features]
channel = []
default = ["channel", "iterator"]
iterator = ["channel"]
# TODO: Unify them on the next breaking release.
extended-siginfo = ["channel", "iterator", "extended-siginfo-raw"]
extended-siginfo-raw = ["cc"]
[workspace]
members = [
"./",
"signal-hook-registry",
"signal-hook-tokio",
"signal-hook-mio",
"signal-hook-async-std",
]
[dependencies]
libc = "^0.2"
signal-hook-registry = { version = "^1.4", path = "signal-hook-registry" }
[dev-dependencies]
serial_test = "^0.7"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[build-dependencies]
cc = { version = "^1", optional = true }