Skip to content

Commit

Permalink
Fix up new readme blurb a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlyoutofphase committed Jun 14, 2020
1 parent 6c914a3 commit 447065b
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,6 @@
[![Build Status](https://travis-ci.com/slightlyoutofphase/staticvec.svg?branch=master)](https://travis-ci.com/slightlyoutofphase/staticvec)
[![Build status](https://ci.appveyor.com/api/projects/status/qb40my4v3rr63st2/branch/master?svg=true)](https://ci.appveyor.com/project/slightlyoutofphase/staticvec/branch/master)

**Important note regarding version 0.10.0 of this crate:**

It exists *solely* because of the fact that the following list of functions:

- `concat`
- `concat_clone`
- `intersperse`
- `intersperse_clone`
- `symmetric_difference`
- `union`

were broken in a way by `rust-lang` PR #70107 that simply cannot be worked around at this time. If you rely on anything
of those functions, please continue using version 0.9.3 with a released-prior-to-June-3 copy of the nightly compiler. Again,
that would still be the latest version of this crate if it were the case that I were able to do something to fix the compilation error,
but unfortunately that simply is not the case right now.

Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.

Note: the word "static" here is meant by the traditional definition of "unchanging" / "not dynamic" etc.
Expand Down Expand Up @@ -49,6 +33,22 @@ Contributions/suggestions/etc. very welcome!

**Minimum supported Rust version:** due to the use of const generics, this is a nightly-only crate at the moment.

**Important note regarding version 0.10.0 of this crate:**

It exists *solely* because of the fact that the following list of functions:

- `concat`
- `concat_clone`
- `intersperse`
- `intersperse_clone`
- `symmetric_difference`
- `union`

were broken in a way by `rust-lang` PR #70107 that simply cannot be worked around at this time. If you rely on any of those functions,
please continue using version 0.9.3 with a released-prior-to-June-3 copy of the nightly compiler. Again, 0.9.3 would still be the latest
version of this crate if it were the case that it were actually possible to do anything to fix the compilation error, but unfortunately
that just is not the case right now.

A basic usage example:

```rust
Expand Down

0 comments on commit 447065b

Please sign in to comment.