1[package] 2name = "signal-hook-async-std" 3version = "0.2.2" 4authors = [ 5 "Michal 'vorner' Vaner <vorner@vorner.cz>", 6 "Thomas Himmelstoss <thimm@posteo.de>", 7] 8 9description = "async-std support for signal-hook" 10documentation = "https://docs.rs/signal-hook-async-std" 11readme = "README.md" 12repository = "https://github.com/vorner/signal-hook" 13keywords = ["signal", "unix", "async-std"] 14license = "Apache-2.0/MIT" 15 16edition = "2018" 17 18[badges] 19travis-ci = { repository = "vorner/signal-hook" } 20maintenance = { status = "actively-developed" } 21 22[dependencies] 23libc = "~0.2" 24async-io = "~1" 25futures-lite = "~1" 26signal-hook = { version = "~0.3", path = ".." } 27 28[dev-dependencies] 29async-std = { version = "~1", features = ["attributes"] } 30serial_test = "~0.5" 31 32[package.metadata.docs.rs] 33all-features = true 34rustdoc-args = ["--cfg", "docsrs"] 35