watchexec/crates/signals
Félix Saparelli 48ff7ec68b
Remove PR machinery
2024-04-21 00:28:06 +12:00
..
src Optimise ignore file gathering (#663) 2024-01-01 05:01:14 +00:00
CHANGELOG.md chore: Release 2024-04-21 00:13:30 +12:00
Cargo.toml chore: Release 2024-04-21 00:13:30 +12:00
README.md Fix and adjust docs (#530) 2023-03-18 10:23:46 +00:00
release.toml Remove PR machinery 2024-04-21 00:28:06 +12:00

README.md

watchexec-signals

Watchexec's signal type.

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

fn main() {
    assert_eq!(Signal::from_str("SIGINT").unwrap(), Signal::Interrupt);
}

Features

  • serde: enables serde support.
  • fromstr: enables FromStr support (default).
  • miette: enables miette (rich diagnostics) support (default).