Sign In

arrayvec

Package Overview
Dependencies
Maintainers
0
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arrayvec - cargo Package Compare versions

Comparing version
0.3.24
to
0.3.25
+1
-1
Cargo.toml

@@ -15,3 +15,3 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

name = "arrayvec"
version = "0.3.24"
version = "0.3.25"
authors = ["bluss"]

@@ -18,0 +18,0 @@ description = "A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString."

@@ -25,2 +25,6 @@

- 0.3.25
- Fix future compat warning about raw pointer casts
- 0.3.24

@@ -27,0 +31,0 @@

@@ -222,3 +222,3 @@ //! **arrayvec** provides the types `ArrayVec` and `ArrayString`:

{
let p = self.get_unchecked_mut(index) as *mut _;
let p: *mut _ = self.get_unchecked_mut(index);
// Shift everything over to make space. (Duplicating the

@@ -225,0 +225,0 @@ // `index`th element into two consecutive places.)

Sorry, the diff of this file is not supported yet