- Adds a
latest_stable_rust
cargo feature, which will automatically pull in other cargo features related to the latest Stable version of rust. - Adds
ArrayVec::try_from_array_len
- Adds
TinyVec::into_vec
andTinyVec::into_boxed_slice
- Adds support for
generic-array
crate - Adds support for the
borsh
crate
- e00E updated the rustc features so that they all correctly depend on the lower version feature. pr 199
- i509VCB added the
try_
functions for fallable reallocation. pr 158 - ajtribick added more error impls to
TryFromSliceError
. pr 160 - The
std
feature now automatically enables thealloc
feature as well.
- eeeebbbbrrrr added an impl for std::io::Write to
TinyVec
when the element type isu8
. This is gated behind the newstd
feature. pr 152
- Improved the performance of the
clone_from
method pr 144
- jeffa5 added arbitrary implementations for
TinyVec
andArrayVec
pr 146. - elomatreb implemented
DoubleEndedIterator
forTinyVecIterator
pr 145.
- Cryptjar removed the
A:Array
bound on the struct ofArrayVec<A:Array>
, and added thefrom_array_empty
method, which is aconst fn
constructor pr 141.
- slightlyoutofphase
added "array splat" style syntax to the
array_vec!
andtiny_vec!
macros. You can now writearray_vec![true; 5]
and get a length 5 array vec full oftrue
, just like normal array initialization allows. Same goes fortiny_vec!
. (pr 118) - not-a-seagull
added
ArrayVec::into_inner
so that you can get the array out of anArrayVec
. (pr 124)
- Added license files for the MIT and Apache-2.0 license options.
- Display additional features in the docs.rs/tinyvec documentation.
Initial Stable Release.