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.6.0-e2018
to
0.6.0
+1
-2
Cargo.toml

@@ -14,5 +14,4 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

[package]
edition = "2018"
name = "bitvec"
version = "0.6.0-e2018"
version = "0.6.0"
authors = ["myrrlyn <myrrlyn@outlook.com>"]

@@ -19,0 +18,0 @@ description = "A crate for manipulating memory, bit by bit"

@@ -15,9 +15,2 @@ # Changelog

### 2018 Edition Branch
The branch `edition/2018` implements the changes necessary for use under the
2018 edition of Rust. It can be used with the `-e2018` version suffix starting
with `0.6.0`. This branch and version suffix will track all ongoing development
until the minimum stable compiler version on the main trunk uses 2018 edition.
## 0.5.0

@@ -24,0 +17,0 @@

@@ -9,2 +9,3 @@ /*! Demonstrates construction and use of a big-endian, u8, `BitVec`

#[macro_use]
extern crate bitvec;

@@ -11,0 +12,0 @@

@@ -53,7 +53,2 @@ # `BitVec` – Managing memory bit by bit

> Note: For 2018 edition Rust, use `"0.6.0-e2018"` as your version string, and
> elide the `#[macro_use]` import directive. The `use bitvec::*;` import is
> still recommended for using the `bitvec!` macro while I figure out how to
> properly use, but conceal, implementation details of the macro suite.
This gives you access to the `bitvec!` macro for building `BitVec` types

@@ -60,0 +55,0 @@ similarly to the `vec!` macro, and imports the following symbols:

@@ -8,3 +8,3 @@ /*! Endianness Markers

use crate::Bits;
use super::bits::Bits;

@@ -11,0 +11,0 @@ /// Travels an element starting at the Most Significant Bit and ending at the

@@ -36,5 +36,4 @@ /*! `BitVec` – `Vec<bool>` in overdrive.

#[doc(hidden)]
#[macro_use]
pub mod macros;
mod macros;

@@ -46,3 +45,3 @@ mod bits;

pub use crate::{
pub use {
bits::Bits,

@@ -49,0 +48,0 @@ endian::*,

@@ -169,3 +169,3 @@ /** Construct a `BitVec` out of a literal array in source code, like `vec!`.

#[allow(unused_imports)]
use crate::{
use {
BigEndian,

@@ -172,0 +172,0 @@ LittleEndian,

@@ -38,3 +38,3 @@ /*! `BitSlice` Wide Reference

use crate::{
use {
Bits,

@@ -41,0 +41,0 @@ Endian,

@@ -10,3 +10,3 @@ /*! `BitVec` structure

use crate::{
use {
BitSlice,

@@ -13,0 +13,0 @@ Bits,

{
"git": {
"sha1": "fbfbc02b8aaffb25d9c19cd4161997fc69fad28f"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet