From 2ed0df07cf684d4c3a61bfdc4c164f49930568e9 Mon Sep 17 00:00:00 2001 From: rhysd Date: Sat, 9 Jul 2022 17:44:37 +0900 Subject: [PATCH] add project-local cargo aliases --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..c3046d7 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[alias] +watch-check = ["watch", "-x", "check --examples --all-features"] +watch-test = ["watch", "-x", "test --all-features -- --skip=src/lib.rs", "-w", "src"]