🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

arrayvec

Package Overview
Dependencies
Maintainers
1
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.7.5
to
0.7.6
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "f3732a0b4c9d5f2a20f3d5221afe75a0c66430dc"
"sha1": "0aede877fe0bfb1ba5e3c2024df8c0958d503a83"
},
"path_in_vcs": ""
}

@@ -47,5 +47,8 @@ on:

cargo update -p serde --precise 1.0.69
- name: Build
run: |
cargo build -v --no-default-features
cargo build --verbose --features "${{ matrix.features }}"
- name: Tests
run: |
cargo build --verbose --features "${{ matrix.features }}"
cargo doc --verbose --features "${{ matrix.features }}" --no-deps

@@ -58,2 +61,24 @@ cargo test --verbose --features "${{ matrix.features }}"

nostd:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
matrix:
include:
- rust: stable
target: thumbv6m-none-eabi
features: zeroize
name: nostd/${{ matrix.target }}/${{ matrix.rust }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- name: Tests
run: |
cargo rustc "--target=${{ matrix.target }}" --no-default-features --features "${{ matrix.features }}"
miri:

@@ -60,0 +85,0 @@ runs-on: ubuntu-latest

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

name = "arrayvec"
version = "0.7.5"
version = "0.7.6"
authors = ["bluss"]

@@ -19,0 +19,0 @@ build = false

Recent Changes (arrayvec)
=========================
## 0.7.6
- Fix no-std build [#274](https://github.com/bluss/arrayvec/pull/274)
## 0.7.5

@@ -5,0 +9,0 @@

@@ -8,2 +8,3 @@ use std::borrow::{Borrow, BorrowMut};

use std::ops::{Deref, DerefMut};
#[cfg(feature="std")]
use std::path::Path;

@@ -506,2 +507,3 @@ use std::ptr;

#[cfg(feature="std")]
impl<const CAP: usize> AsRef<Path> for ArrayString<CAP> {

@@ -508,0 +510,0 @@ fn as_ref(&self) -> &Path {

Sorry, the diff of this file is not supported yet