watchexec/crates/signals
github-actions[bot] deb6072a26
release: watchexec-signals v2.1.0 (#711)
Co-authored-by: github-actions <github-actions@github.com>
2023-12-09 23:25:41 +13:00
..
src New option: --signal-map (#710) 2023-12-09 09:30:58 +00:00
CHANGELOG.md release: watchexec-signals v2.1.0 (#711) 2023-12-09 23:25:41 +13:00
Cargo.toml release: watchexec-signals v2.1.0 (#711) 2023-12-09 23:25:41 +13: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).