0.7.4
This commit is contained in:
@@ -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
@@ -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
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user