watchexec-signals

Watchexec's signal type.

```rust use std::str::FromStr; use watchexec_signals::Signal;

fn main() { asserteq!(Signal::fromstr("SIGINT").unwrap(), Signal::Interrupt); } ```

Features