Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ categories = ["data-structures"]
description = "StackVec: vector-like facade for stack-allocated arrays."
documentation = "https://docs.rs/stackvector"
edition = "2021"
rust-version = "1.56.0"
rust-version = "1.60.0"
keywords = ["vec", "vector", "stack", "no_std"]
license = "MIT/Apache-2.0"
name = "stackvector"
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
rust-stackvector
================
# stackvector

[Documentation](https://docs.rs/stackvector/)

[Release notes](https://github.com/Alexhuszagh/rust-stackvector/releases)

"StackVec": vector-like facade for stack-allocated arrays.

# Comparison to ArrayVec
## Comparison to ArrayVec

[ArrayVec](https://github.com/bluss/arrayvec) is a relatively mature stack vector implementation, using a backing array like stackvector. The main differences between ArrayVec and StackVec are in the compatibility with Vec's API, as well as the ease-of-creation.

Expand All @@ -25,12 +24,12 @@ Likewise, stackvector is missing certain convenience methods that are not presen

**Version Support**

Both ArrayVec and stackvector have support for Rustc versions as old as 1.20.0.
stackvector has support for Rustc versions as old as 1.60.0.

# License
## License

StackVector is derived from Servo's [smallvec](https://github.com/servo/rust-smallve), and like smallvec, it is dual licensed under either the MIT or Apache 2.0 license.

# Version Support
## Version Support

Stackvector has been tested on version of Rustc as low as 1.36.0 (needed for `mem::MaybeUninit`).
Stackvector has been tested on version of Rustc as low as 1.60.0.
Loading