0.3.20
This commit is contained in:
+2
-2
@@ -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"]
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user