Skip to content

Commit ac39873

Browse files
committed
update README.md
1 parent 44e5a59 commit ac39873

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,21 @@ or iterations are required.
3131
- **Unsafe code:** The implementation relies on `unsafe` code for managing memory and pointers. However, it is extensively tested.
3232
- **More complex than `Vec` or `LinkedList`:** The additional logic for node splitting, merging, and XOR-linked traversal increases complexity compared to simpler collections.
3333

34+
## Installation
35+
36+
Add `array_list` to your `Cargo.toml`:
37+
38+
```bash
39+
cargo add array_list
40+
```
41+
42+
or edit your Cargo.toml manually by adding:
43+
44+
```toml
45+
[dependencies]
46+
array_list = "0.1"
47+
```
48+
3449
## Example Usage
3550

3651
```rust

0 commit comments

Comments
 (0)