arrayvec 0.3.17
This commit is contained in:
+3
-2
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "arrayvec"
|
name = "arrayvec"
|
||||||
version = "0.3.16"
|
version = "0.3.17"
|
||||||
authors = ["bluss"]
|
authors = ["bluss"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
||||||
@@ -15,10 +15,11 @@ version = "0.2.12"
|
|||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[dependencies.nodrop]
|
[dependencies.nodrop]
|
||||||
version = "0.1.6"
|
version = "0.1.8"
|
||||||
path = "nodrop"
|
path = "nodrop"
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
std = ["odds/std", "nodrop/std"]
|
std = ["odds/std", "nodrop/std"]
|
||||||
|
use_union = ["nodrop/use_union"]
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
DOCCRATES = arrayvec nodrop odds
|
DOCCRATES = arrayvec nodrop nodrop_union odds
|
||||||
|
|
||||||
# deps to delete the generated docs
|
# deps to delete the generated docs
|
||||||
RMDOCS =
|
RMDOCS =
|
||||||
|
|
||||||
FEATURES = odds/unstable
|
FEATURES = "odds/unstable nodrop/use_union"
|
||||||
|
|
||||||
VERSIONS = $(patsubst %,target/VERS/%,$(DOCCRATES))
|
VERSIONS = $(patsubst %,target/VERS/%,$(DOCCRATES))
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,11 @@ __ http://bluss.github.io/arrayvec
|
|||||||
Recent Changes (arrayvec)
|
Recent Changes (arrayvec)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
- 0.3.17
|
||||||
|
|
||||||
|
- Added crate feature ``use_union`` which forwards to the nodrop crate feature
|
||||||
|
- Added methods ``.is_full()`` to ``ArrayVec`` and ``ArrayString``.
|
||||||
|
|
||||||
- 0.3.16
|
- 0.3.16
|
||||||
|
|
||||||
- Added method ``.retain()`` to ``ArrayVec``.
|
- Added method ``.retain()`` to ``ArrayVec``.
|
||||||
|
|||||||
@@ -7,6 +7,12 @@
|
|||||||
//! - Optional, enabled by default
|
//! - Optional, enabled by default
|
||||||
//! - Requires Rust 1.6 *to disable*
|
//! - Requires Rust 1.6 *to disable*
|
||||||
//! - Use libstd
|
//! - Use libstd
|
||||||
|
//!
|
||||||
|
//! - `use_union`
|
||||||
|
//! - Optional
|
||||||
|
//! - Requires Rust nightly channel
|
||||||
|
//! - Use the unstable feature untagged unions for the internal implementation,
|
||||||
|
//! which has reduced space overhead
|
||||||
#![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