From ccc8af5561bc1ad5fa8f21cad82961c5a8f111d7 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 23 Sep 2017 21:24:02 -0600 Subject: [PATCH] Reduce needless recompiles Build script calls skeptic which emits information asking cargo to monitor content of README.md.skt.md for changes. If changes to that file are detected cargo should rebuild this crate. In case of this project the files does not exist. This causes cargo to trigger a rebuild every time in hope that it will get created by the build script. The workaround is to create the file that skeptic asks to monitor which stops cargo from triggering the rebuild. For details consult this issues: * budziq/rust-skeptic#25 * rust-lang/cargo#4213 --- README.md.skt.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 README.md.skt.md diff --git a/README.md.skt.md b/README.md.skt.md new file mode 100644 index 0000000..e69de29