Releases: kanarus/byte_reader
Releases · kanarus/byte_reader
v3.1.1
08 Jul 21:54
Compare
Sorry, something went wrong.
No results found
What's Changed
use &str insteadof String in benchmark by @kana-rus in #23
perf: skip while by @kana-rus in #24
chore: remove redundant repeating in bench by @kana-rus in #25
Full Changelog : v3.1.0...v3.1.1
v3.1.0
04 Jul 10:01
Compare
Sorry, something went wrong.
No results found
What's Changed
upgrade read_until arg: &[u8] -> impl AsRef<[u8]> & bump version by @kana-rus in #20
Remove version = "3.0.0" from byte_reader in test's dependencies by @kana-rus in #21
git ignore Cargo.locks by @kana-rus in #22
Full Changelog : v3.0.0...v3.1.0
v3.0.0
25 Mar 07:40
Compare
Sorry, something went wrong.
No results found
Remove "detached" feature
Have Reader<'r> return &'r [u8] in read_* operations, then the issue around borrowing Reader without unsafe "detahced" feature!
v2.1.0
24 Mar 15:30
Compare
Sorry, something went wrong.
No results found
Changes
Add r.read_until(pattern: &[u8]) -> &[u8]
Add "detached" feature for issue around borrowing Reader
v2.0.0 Release
03 Feb 07:24
Compare
Sorry, something went wrong.
No results found
Change Log
Suport #![no_std]
Add [package.metadata.docs.rs]
Reader::new to take only &[u8] ( instad of &impl AsRef<[u8]> )