Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Davide Di Carlo <daddinuz@gmail.com>"]
description = "A heap-allocated, fixed-capacity, variable-size array, no_std compatible."
name = "cap_vec"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
license = "MIT"
keywords = ["array", "collections", "list", "vec", "heap"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ or edit your Cargo.toml manually by adding:

```toml
[dependencies]
cap_vec = "0.1"
cap_vec = "0.2"
```

## Safety and Coverage

This crate contains a small portion of unsafe code.
All tests run under [miri](https://github.com/rust-lang/miri) and the tests cover about 70% of the code.
All tests run under [miri](https://github.com/rust-lang/miri) and the tests cover about 80% of the code.
You can generate the coverage report using [tarpaulin](https://github.com/xd009642/tarpaulin).

## Contributions
Expand Down
Loading
Loading