1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "signal-hook" 15version = "0.3.17" 16authors = [ 17 "Michal 'vorner' Vaner <vorner@vorner.cz>", 18 "Thomas Himmelstoss <thimm@posteo.de>", 19] 20description = "Unix signal handling" 21documentation = "https://docs.rs/signal-hook" 22readme = "README.md" 23keywords = [ 24 "signal", 25 "unix", 26 "daemon", 27] 28license = "Apache-2.0/MIT" 29repository = "https://github.com/vorner/signal-hook" 30 31[package.metadata.docs.rs] 32all-features = true 33rustdoc-args = [ 34 "--cfg", 35 "docsrs", 36] 37 38[dependencies.libc] 39version = "^0.2" 40 41[dependencies.signal-hook-registry] 42version = "^1.4" 43 44[dev-dependencies.serial_test] 45version = "^0.7" 46 47[build-dependencies.cc] 48version = "^1" 49optional = true 50 51[features] 52channel = [] 53default = [ 54 "channel", 55 "iterator", 56] 57extended-siginfo = [ 58 "channel", 59 "iterator", 60 "extended-siginfo-raw", 61] 62extended-siginfo-raw = ["cc"] 63iterator = ["channel"] 64 65[badges.maintenance] 66status = "actively-developed" 67