watchexec-events

Crates.iowatchexec-events
lib.rswatchexec-events
version4.0.0
sourcesrc
created_at2023-03-18 11:34:50.998419
updated_at2024-10-14 10:16:25.896107
descriptionWatchexec's event types
homepage
repositoryhttps://github.com/watchexec/watchexec
max_upload_size
id813686
size63,152
FĂ©lix Saparelli (passcod)

documentation

https://docs.rs/watchexec-events

README

watchexec-events

Watchexec's event types.

Fundamentally, events in watchexec have three purposes:

  1. To trigger the launch, restart, or other interruption of a process;
  2. To be filtered upon according to whatever set of criteria is desired;
  3. To carry information about what caused the event, which may be provided to the process.

Outside of Watchexec, this library is particularly useful if you're building a tool that runs under it, and want to easily read its events (with --emit-events-to=json-file and --emit-events-to=json-stdio).

use std::io::{stdin, Result};
use watchexec_events::Event;

fn main() -> Result<()> {
    for line in stdin().lines() {
        let event: Event = serde_json::from_str(&line?)?;
        dbg!(event);
    }

    Ok(())
}

Features

  • serde: enables serde support.
  • notify: use Notify's file event types (default).

If you disable notify, you'll get a leaner dependency tree that's still able to parse the entire events, but isn't type compatible with Notify. In most deserialisation usecases, this is fine, but it's not the default to avoid surprises.

Commit count: 1382

cargo fmt