This commit is contained in:
bluss
2016-10-04 14:46:25 +02:00
parent 7a7ec178b9
commit d43c959fa8
3 changed files with 7 additions and 2 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
[package] [package]
name = "arrayvec" name = "arrayvec"
version = "0.3.19" version = "0.3.20"
authors = ["bluss"] authors = ["bluss"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
description = "A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString." description = "A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString."
documentation = "http://bluss.github.io/arrayvec" documentation = "https://docs.rs/arrayvec/"
repository = "https://github.com/bluss/arrayvec" repository = "https://github.com/bluss/arrayvec"
keywords = ["stack", "vector", "array", "data-structure", "no_std"] keywords = ["stack", "vector", "array", "data-structure", "no_std"]
+4
View File
@@ -22,6 +22,10 @@ __ https://bluss.github.io/arrayvec
Recent Changes (arrayvec) Recent Changes (arrayvec)
------------------------- -------------------------
- 0.3.20
- Simplify and speed up ``ArrayString``s ``.push(char)``-
- 0.3.19 - 0.3.19
- Add new crate feature ``use_generic_array`` which allows using their - Add new crate feature ``use_generic_array`` which allows using their
+1
View File
@@ -19,6 +19,7 @@
//! - Requires Rust stable channel //! - 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.
#![doc(html_root_url="https://docs.rs/arrayvec/0.3/")]
#![cfg_attr(not(feature="std"), no_std)] #![cfg_attr(not(feature="std"), no_std)]
extern crate odds; extern crate odds;
extern crate nodrop; extern crate nodrop;