We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e02a5b commit 61400f5Copy full SHA for 61400f5
Cargo.toml
@@ -8,6 +8,6 @@ license = "MIT"
8
documentation = "https://docs.rs/bit-iter"
9
repository = "https://github.com/ctamblyn/bit-iter"
10
keywords = ["bits", "iterator", "bit-twiddling"]
11
-categories = ["algorithms"]
+categories = ["algorithms", "no-std"]
12
13
[dependencies]
src/lib.rs
@@ -23,6 +23,8 @@
23
//! Bit 16 is set.
24
//! ```
25
26
+#![no_std]
27
+
28
#[cfg(test)]
29
mod tests;
30
0 commit comments