Skip to content

Commit 447065b

Browse files
Fix up new readme blurb a bit
1 parent 6c914a3 commit 447065b

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,6 @@
66
[![Build Status](https://travis-ci.com/slightlyoutofphase/staticvec.svg?branch=master)](https://travis-ci.com/slightlyoutofphase/staticvec)
77
[![Build status](https://ci.appveyor.com/api/projects/status/qb40my4v3rr63st2/branch/master?svg=true)](https://ci.appveyor.com/project/slightlyoutofphase/staticvec/branch/master)
88

9-
**Important note regarding version 0.10.0 of this crate:**
10-
11-
It exists *solely* because of the fact that the following list of functions:
12-
13-
- `concat`
14-
- `concat_clone`
15-
- `intersperse`
16-
- `intersperse_clone`
17-
- `symmetric_difference`
18-
- `union`
19-
20-
were broken in a way by `rust-lang` PR #70107 that simply cannot be worked around at this time. If you rely on anything
21-
of those functions, please continue using version 0.9.3 with a released-prior-to-June-3 copy of the nightly compiler. Again,
22-
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,
23-
but unfortunately that simply is not the case right now.
24-
259
Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
2610

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

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

36+
**Important note regarding version 0.10.0 of this crate:**
37+
38+
It exists *solely* because of the fact that the following list of functions:
39+
40+
- `concat`
41+
- `concat_clone`
42+
- `intersperse`
43+
- `intersperse_clone`
44+
- `symmetric_difference`
45+
- `union`
46+
47+
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,
48+
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
49+
version of this crate if it were the case that it were actually possible to do anything to fix the compilation error, but unfortunately
50+
that just is not the case right now.
51+
5252
A basic usage example:
5353

5454
```rust

0 commit comments

Comments
 (0)