0.3.19
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "arrayvec"
|
name = "arrayvec"
|
||||||
version = "0.3.18"
|
version = "0.3.19"
|
||||||
authors = ["bluss"]
|
authors = ["bluss"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
||||||
|
|||||||
+7
-1
@@ -6,7 +6,7 @@ A vector with fixed capacity. Requires Rust 1.2+.
|
|||||||
|
|
||||||
Please read the `API documentation here`__
|
Please read the `API documentation here`__
|
||||||
|
|
||||||
__ http://bluss.github.io/arrayvec
|
__ https://bluss.github.io/arrayvec
|
||||||
|
|
||||||
|build_status|_ |crates|_ |crates2|_
|
|build_status|_ |crates|_ |crates2|_
|
||||||
|
|
||||||
@@ -22,6 +22,12 @@ __ http://bluss.github.io/arrayvec
|
|||||||
Recent Changes (arrayvec)
|
Recent Changes (arrayvec)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
- 0.3.19
|
||||||
|
|
||||||
|
- Add new crate feature ``use_generic_array`` which allows using their
|
||||||
|
``GenericArray`` just like a regular fixed size array for the storage
|
||||||
|
of an ``ArrayVec``.
|
||||||
|
|
||||||
- 0.3.18
|
- 0.3.18
|
||||||
|
|
||||||
- Fix bounds check in ``ArrayVec::insert``!
|
- Fix bounds check in ``ArrayVec::insert``!
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
//!
|
//!
|
||||||
//! - `use_generic_array`
|
//! - `use_generic_array`
|
||||||
//! - Optional
|
//! - Optional
|
||||||
|
//! - Requires Rust stable channel
|
||||||
//! - Depend on generic-array and allow using it just like a fixed
|
//! - Depend on generic-array and allow using it just like a fixed
|
||||||
//! size array for ArrayVec storage.
|
//! size array for ArrayVec storage.
|
||||||
#![cfg_attr(not(feature="std"), no_std)]
|
#![cfg_attr(not(feature="std"), no_std)]
|
||||||
|
|||||||
Reference in New Issue
Block a user