Sign In

bitvec

Package Overview
Dependencies
Maintainers
0
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitvec - cargo Package Compare versions

Package version was removed
This package version has been unpublished, mostly likely due to security reasons
Comparing version
0.9.0-e2018
to
0.9.0
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "b9bf6ee8b924493adbb1247decda1c02fed217d0"
"sha1": "9baf414265543bd381ead60565c68376b2a6376e"
}
}

@@ -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,

@@ -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

@@ -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