aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update version to 0.3.1HEADv0.3.1mainBrian Cully2022-10-121-1/+1
|
* remove extra semicolonnextBrian Cully2022-10-121-1/+1
|
* update repo urlBrian Cully2022-10-121-1/+1
|
* Fix clippy lints.Brian Cully2019-09-091-3/+2
|
* Remove calls to mem::transumte.Brian Cully2019-09-091-41/+23
| | | | | | I was under the mistaken impression that mutable `AtomicUsize` was needed, when it's not. Simplify all code to use normal borrows instead of pointers with transmute.
* Remove `Sync` marker for Reader/Writer.v0.3.0Brian Cully2019-09-023-4/+8
| | | | | | | | These are not sync, as they can only be used from one thread at a time. Also add a `Send` trait for `RingBuffer`, as long as its element type is also `Send`.
* Ignore target directory.Brian Cully2019-08-151-1/+1
|
* Fix travis-ci badge.Brian Cully2019-08-141-1/+1
|
* Finish documentation sentence for `unshift_from`.Brian Cully2019-08-141-1/+1
|
* Version bump to 0.2.v0.2.0Brian Cully2019-08-141-1/+1
|
* Add changelog.Brian Cully2019-08-141-0/+8
|
* Add badges to README.Brian Cully2019-08-141-2/+6
|
* Remove un-needed feature gate.Brian Cully2019-08-142-7/+8
| | | | This should work on stable now.
* Use rust nightly.Brian Cully2019-08-141-0/+2
|
* Add travis CI stuff.Brian Cully2019-08-141-0/+1
|
* Relax ordering and use fences where necessary.Brian Cully2019-08-141-15/+29
|
* Remove `Copy` requirement for most methods.Brian Cully2019-08-141-23/+54
| | | | | | | | | The ring buffer will now take and pass ownership as required, so the `Copy` trait constraint is no longer required. The one exception is `Writer::unshift_from`, where we're taking data we don't know how to replace from an arbitrary slice, so that needs to be `Copy`-able.
* API Change: Don't require default value for RingBuffer::new().Brian Cully2019-08-141-22/+31
| | | | | | | | Use mem::MaybeUninit as the backing store so initialization is no longer required in `new`. This is safe, because you can't read anything out of the ring buffer until you store something, which initializes the memory.
* Add Writer::unshift_from for batch copying data in.Brian Cully2019-08-131-0/+52
| | | | | This is just the inverse of Reader::shift and exists for the same reasons.
* Add Reader::shift_into function for batch copying.Brian Cully2019-08-131-3/+67
| | | | | | This function can be used if you need to quickly copy a bunch of things from the buffer, as it only does its safety checks once, rather than on every item extraction.
* Version bump to 0.1.1.v0.1.1Brian Cully2019-08-131-1/+1
| | | | | | * Add more documentation. * Add `Iterator` implementation. * Optimize indexing by using unchecked variants.
* Documentation.Brian Cully2019-08-131-0/+19
|
* Add iterator implementation.Brian Cully2019-08-131-4/+28
|
* Use get_unchecked for backing array access.Brian Cully2019-08-131-4/+8
| | | | | The index is guaranteed to be in bounds because it's always modulo the array capacity, so use the unchecked variants to get/set values.
* Initial commit.v0.1.0Brian Cully2019-08-046-0/+1076