watchexec/lib
Félix Saparelli f58e97a62f
Fix globset ignorefile support (wrong field)
2021-10-16 17:01:27 +13:00
..
examples Rename Signal to MainSignal 2021-10-16 01:13:16 +13:00
src Fix globset ignorefile support (wrong field) 2021-10-16 17:01:27 +13:00
tests Stop using eyre even in examples 2021-10-10 21:04:40 +13:00
CITATION.cff Add citation.cff 2021-07-29 00:45:13 +12:00
Cargo.toml Reduce featureset of dependencies (tokio,git2) 2021-10-15 14:27:17 +13:00
README.md Link to website for downloads 2021-07-10 03:48:12 +12:00

README.md

Crates.io page API Docs Crate license: Apache 2.0 MSRV: 1.43.0 (breaking) CI status

Watchexec library

The library which powers Watchexec CLI and other tools.

Quick start

use watchexec::{
    config::ConfigBuilder,
    error::Result,
    pathop::PathOp,
    run::{
        ExecHandler,
        Handler,
        watch,
    },
};

fn main() -> Result<()> {
    let config = ConfigBuilder::default()
        .clear_screen(true)
        .run_initially(true)
        .paths(vec![ "/path/to/dir".into() ])
        .cmd(vec![ "date; seq 1 10".into() ])
        .build()?;

    let handler = MyHandler(ExecHandler::new(options)?);
    watch(&handler)
}

struct MyHandler(ExecHandler);

impl Handler for MyHandler {
    fn args(&self) -> Config {
        self.0.args()
    }

    fn on_manual(&self) -> Result<bool> {
        println!("Running manually!");
        self.0.on_manual()
    }

    fn on_update(&self, ops: &[PathOp]) -> Result<bool> {
        println!("Running manually {:?}", ops);
        self.0.on_update(ops)
    }
}