| { | ||
| "git": { | ||
| "sha1": "b9bf6ee8b924493adbb1247decda1c02fed217d0" | ||
| "sha1": "9baf414265543bd381ead60565c68376b2a6376e" | ||
| } | ||
| } |
+1
-2
@@ -14,5 +14,4 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO | ||
| [package] | ||
| edition = "2018" | ||
| name = "bitvec" | ||
| version = "0.9.0-e2018" | ||
| version = "0.9.0" | ||
| authors = ["myrrlyn <myrrlyn@outlook.com>"] | ||
@@ -19,0 +18,0 @@ description = "A crate for manipulating memory, bit by bit" |
@@ -5,2 +5,5 @@ /*! Prove that the example code in `README.md` executes. | ||
| #[cfg(feature = "alloc")] | ||
| extern crate bitvec; | ||
| #[cfg(feature = "alloc")] | ||
| use bitvec::*; | ||
@@ -7,0 +10,0 @@ |
@@ -26,2 +26,5 @@ /*! Sieve of Eratosthenes | ||
| #[cfg(feature = "alloc")] | ||
| extern crate bitvec; | ||
| #[cfg(feature = "alloc")] | ||
| use bitvec::{ | ||
@@ -28,0 +31,0 @@ BitVec, |
+3
-0
@@ -10,2 +10,5 @@ /*! Demonstrates construction and use of a big-endian, u8, `BitVec` | ||
| #[cfg(feature = "alloc")] | ||
| extern crate bitvec; | ||
| #[cfg(feature = "alloc")] | ||
| use bitvec::{ | ||
@@ -12,0 +15,0 @@ // `bitvec!` macro |
+6
-0
@@ -39,2 +39,8 @@ /*! `BitVec` – `Vec<bool>` in overdrive. | ||
| #[cfg(all(feature = "alloc", not(feature = "std")))] | ||
| extern crate alloc; | ||
| #[cfg(feature = "std")] | ||
| extern crate core; | ||
| #[macro_use] | ||
@@ -41,0 +47,0 @@ mod macros; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet