From 2065e1012c20c8215ac18b83fadcc8805431d9cf Mon Sep 17 00:00:00 2001 From: Timon Date: Wed, 5 May 2021 16:58:13 +0200 Subject: [PATCH] Disable default enabled features (#577) When running crossterm-backend with this command, on linux, I will get an error that ncurses is not installed. By adding this, it works fine. --- examples/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Readme.md b/examples/Readme.md index 85c5614..64bab2f 100644 --- a/examples/Readme.md +++ b/examples/Readme.md @@ -8,7 +8,7 @@ To run an example, use `cargo run --bin EXAMPLE_NAME`. To use a specific cursive backend, you can do, for example: ``` -cargo run --bin EXAMPLE_NAME --features cursive/crossterm-backend +cargo run --bin EXAMPLE_NAME --features cursive/crossterm-backend --no-default-features ``` ## [`hello_world`](src/bin/hello_world.rs)