watchexec/crates/signals
github-actions[bot] 91b34bc96e
release: watchexec-signals v2.0.0 (#705)
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Félix Saparelli <felix@passcod.name>
2023-11-29 05:18:03 +00:00
..
src Clippy nursery (#681) 2023-11-26 02:40:57 +00:00
CHANGELOG.md release: watchexec-signals v2.0.0 (#705) 2023-11-29 05:18:03 +00:00
Cargo.toml release: watchexec-signals v2.0.0 (#705) 2023-11-29 05:18:03 +00:00
README.md Fix and adjust docs (#530) 2023-03-18 10:23:46 +00:00
release.toml --emit-events-to (#515) 2023-03-18 21:32:24 +13: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).