From e3717ad47bf5a659c7b7084b8b006fa05e9d9ff8 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 30 Nov 2019 01:10:11 +0100 Subject: [PATCH] Add --features to CI recipe (#1103) --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 646d6875..bfd472b5 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,14 @@ There are multiple ways to install mdBook. This will constrain the server to install the latest **non-breaking** version of mdBook and will prevent your books from failing to build because - we released a new version. For example: + we released a new version. + + You can also disable default features to speed up compile time. + + Example: ``` - cargo install mdbook --vers "^0.1.0" + cargo install mdbook --no-default-features --features output --vers "^0.1.0" ``` 3. **From Git**