From bf0f693e90fe3fdbdec40004a4112fc873b4134f Mon Sep 17 00:00:00 2001 From: Nicolas Rolland Date: Fri, 21 Aug 2020 11:09:42 +0200 Subject: [PATCH] fix cargo config file for using no extra features on my computer + in the doc https://doc.rust-lang.org/cargo/reference/features.html `default-features = false` is the way to disable extra features (I think `no-default-features` is for command line invocation) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index feec836a..f3dfef64 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ To use libfringe on a bare-metal target, add the `no-default-features` key: ```toml [dependencies.fringe] version = "1.2.1" -no-default-features = true +default-features = false ``` ### Feature flags