From 9416a0448a93e689022b332a8f4d4b12adc124d1 Mon Sep 17 00:00:00 2001 From: Tim Boldt Date: Tue, 9 Apr 2019 21:25:00 -0700 Subject: [PATCH] Fix problem with no_std deployments. bit-reverse has a default feature that enables std. To make it work with no_std, remove the default features. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index faa6e65..818a979 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ exclude = [ [dependencies] embedded-hal = "0.2.2" -bit_reverse = "0.1.7" +bit_reverse = { version = "0.1.7", default-features = false } bitflags = "1.0" byteorder = { version = "1.2", default-features = false }