Add a stub to the watchexec (lib) crate to point to the watchexec-cli crate

This commit is contained in:
Félix Saparelli 2021-05-09 01:19:50 +12:00
parent 8295ac7a1c
commit 148be31f65
No known key found for this signature in database
GPG Key ID: B948C4BAE44FC474
1 changed files with 5 additions and 0 deletions

5
lib/src/main.rs Normal file
View File

@ -0,0 +1,5 @@
#[cfg(not(debug_assertions))]
compile_error!("The watchexec CLI has moved to the watchexec-cli crate");
fn main() {
panic!("The watchexec CLI has moved to the watchexec-cli crate");
}