This commit is contained in:
Ulrik Sverdrup
2023-06-17 21:58:14 +02:00
parent 2cd12ef4be
commit 2c92a59bed
4 changed files with 11 additions and 3 deletions
+4
View File
@@ -1,6 +1,10 @@
Recent Changes (arrayvec)
=========================
## 0.7.4
- Add feature zeroize to support the `Zeroize` trait by @elichai
## 0.7.3
- Use track_caller on multiple methods like push and similar, for capacity
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "arrayvec"
version = "0.7.3"
version = "0.7.4"
authors = ["bluss"]
license = "MIT OR Apache-2.0"
edition = "2018"
@@ -49,7 +49,7 @@ debug = true
debug = true
[package.metadata.docs.rs]
features = ["serde"]
features = ["serde", "zeroize"]
[package.metadata.release]
no-dev-version = true
+1 -1
View File
@@ -1,4 +1,4 @@
Copyright (c) Ulrik Sverdrup "bluss" 2015-2017
Copyright (c) Ulrik Sverdrup "bluss" 2015-2023
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
+4
View File
@@ -11,6 +11,10 @@
//! - Optional
//! - Enable serialization for ArrayVec and ArrayString using serde 1.x
//!
//! - `zeroize`
//! - Optional
//! - Implement `Zeroize` for ArrayVec and ArrayString
//!
//! ## Rust Version
//!
//! This version of arrayvec requires Rust 1.51 or later.