Skip to content

Commit 915ae5d

Browse files
timboldtRandomInsano
authored andcommitted
Fix problem with no_std deployments. (#16)
bit-reverse has a default feature that enables std. To make it work with no_std, remove the default features.
1 parent 6690f2b commit 915ae5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude = [
1515

1616
[dependencies]
1717
embedded-hal = "0.2.2"
18-
bit_reverse = "0.1.7"
18+
bit_reverse = { version = "0.1.7", default-features = false }
1919
bitflags = "1.0"
2020
byteorder = { version = "1.2", default-features = false }
2121

0 commit comments

Comments
 (0)