thincollections
===============
[](https://crates.io/crates/thincollections)
[](https://docs.rs/thincollections)

Alternative implementations for vector, map and set that are faster/smaller for some use cases.
- [Documentation](https://docs.rs/thincollections)
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
thincollections = "0.5.0"
```
and this to your crate root:
```rust
#[macro_use]
extern crate thincollections;
```
## Rust Version Support
The minimum supported Rust version is 1.28 due to use allocator api and NonZero*.