All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Changelog entries will contain a link to the pull request implementing that change, where applicable.
Unreleased - ReleaseDate
0.1.4 - 2023-12-14
- Added a
From<Cow<'_, [u8]>>
impl forOwnedBuffer
(#5
0.1.3 - 2023-06-07
- Added an
impl From<OwnedBuffer> for Vec<u8>
(#3)
0.1.2 - 2023-06-06
- When slicing a mmapped buffer, the resulting offsets would be relative to the start of the file and not the start of the slice (#1)
0.1.1 - 2023-05-18
- Added more
PartialEq
trait implementations toOwnedBuffer
0.1.0 - 2023-05-18
- Created an
OwnedBuffer
type which is either an in-memory buffer (bytes::Bytes
) or a mmapped buffer (memmap2::Mmap
)