-
- Downloads
Auto merge of #4 - japaric:v2, r=japaric
support arrays of any size, don't require an initialization value, .. single producer single consumer support for ring buffer
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- .travis.yml 51 additions, 0 deletions.travis.yml
- Cargo.toml 10 additions, 3 deletionsCargo.toml
- ci/install.sh 19 additions, 0 deletionsci/install.sh
- ci/script.sh 12 additions, 0 deletionsci/script.sh
- src/lib.rs 153 additions, 149 deletionssrc/lib.rs
- src/ring_buffer/mod.rs 326 additions, 0 deletionssrc/ring_buffer/mod.rs
- src/ring_buffer/spsc.rs 126 additions, 0 deletionssrc/ring_buffer/spsc.rs
- src/vec.rs 231 additions, 0 deletionssrc/vec.rs
.travis.yml
0 → 100644
[package] | ||
authors = ["Jorge Aparicio <jorge@japaric.io>"] | ||
categories = ["data-structures", "no-std"] | ||
categories = [ | ||
"data-structures", | ||
"no-std", | ||
] | ||
description = "`static` friendly data structures that don't require dynamic memory allocation" | ||
documentation = "https://docs.rs/heapless" | ||
keywords = ["static", "no-heap"] | ||
keywords = [ | ||
"static", | ||
"no-heap", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
name = "heapless" | ||
repository = "https://github.com/japaric/heapless" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
[dependencies] | ||
untagged-option = "0.1.1" |
ci/install.sh
0 → 100644
ci/script.sh
0 → 100644
src/ring_buffer/mod.rs
0 → 100644
src/ring_buffer/spsc.rs
0 → 100644
src/vec.rs
0 → 100644
Please register or sign in to comment