Skip to content

Commit 8e43b86

Browse files
committed
v0.2.3
1 parent 93bacf9 commit 8e43b86

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "slimvec"
5-
version = "0.1.2"
5+
version = "0.2.3"
66
authors = ["ickk <crates@ickk.io>"]
77
license-file = "LICENSE.md"
88
license = "Zlib OR MIT OR Apache-2.0"
@@ -19,7 +19,6 @@ include = [
1919
"docs/Overview.md",
2020
"docs/Architecture.md",
2121
]
22-
publish = false
2322

2423
[dependencies]
2524

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,23 @@ it has a smaller inline-size.
1313
- [Testing](docs/Testing.md)
1414
- [Future-work](docs/Future-work.md)
1515

16+
```text
17+
SlimVec<T> Allocation
18+
+-------------+ +-------------+
19+
| ptr: 0xabcd | ----> | length: 2 |
20+
+-------------+ |-------------|
21+
| capacity: 4 |
22+
|=============|
23+
| 0: A |
24+
|-------------|
25+
| 1: B |
26+
|-------------|
27+
| 2: <uninit> |
28+
|-------------|
29+
| 3: <uninit> |
30+
+-------------+
31+
```
32+
1633
Licensing
1734
---------
1835

0 commit comments

Comments
 (0)