diff options
author | Brian Cully <bjc@kublai.com> | 2019-08-14 17:57:11 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-08-14 17:57:11 -0400 |
commit | fc570ff6ffe5d8369888b1e3f85dd0c9b1b344ab (patch) | |
tree | 60a03f5b969020b3aa4e4f19f649c1dc05250156 | |
parent | 3f23bd3113c99cfddedfa6921db2bab5ddccb6de (diff) | |
download | starb-fc570ff6ffe5d8369888b1e3f85dd0c9b1b344ab.tar.gz starb-fc570ff6ffe5d8369888b1e3f85dd0c9b1b344ab.zip |
Add badges to README.
-rw-r--r-- | README.md | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,8 @@ # STAtic Ring Buffers -This is a ring buffer implementation suitable for use in `no-std` -environments. +[![Documentation](https://docs.rs/starb/badge.svg)](https://docs.rs/starb) +[![Testing](https://travis-ci.org/bjc/badge.svg?branch=master)](https://travis-ci.org/bjc/starb) + +This is a simple ring-buffer structure that lives on the stack, rather +than the heap, so that it can be used in `no-std` environments, such +as embedded. |