From 148be31f656842a595f6d37a940a69c0f9ae497f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 9 May 2021 01:19:50 +1200 Subject: [PATCH] Add a stub to the watchexec (lib) crate to point to the watchexec-cli crate --- lib/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/src/main.rs diff --git a/lib/src/main.rs b/lib/src/main.rs new file mode 100644 index 0000000..e3a255d --- /dev/null +++ b/lib/src/main.rs @@ -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"); +}