index
:
bytes
buf_mut_alloc_note
eliza/trace
gh-pages
master
no_alloc
v0.4.x
v0.5.x
v0.6.x
vorot93/bytesmut-join
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
(
follow
)
Age
Commit message (
Expand
)
Author
Files
Lines
2023-10-02
Various cleanup (#635)
Alice Ryhl
1
-1
/
+1
2023-06-05
Fix CI failure (#616)
Taiki Endo
2
-0
/
+2
2023-02-10
Implement BufMut for `&mut [MaybeUninit<u8>]` (#597)
Michal Nazarewicz
1
-13
/
+110
2023-01-31
Avoid large reallocations when freezing BytesMut (#592)
brian m. carlson
1
-0
/
+45
2022-07-30
Fix reserve over allocating underlying buffer (#560)
Matt Schulte
1
-0
/
+28
2022-07-13
Add conversion from Bytes to Vec<u8> (#547)
Jiahao XU
3
-0
/
+128
2022-07-10
Add conversion from BytesMut to Vec<u8> (#543)
Jiahao XU
1
-0
/
+37
2022-07-09
miri: don't use int2ptr casts for invalid pointers (#553)
Alice Ryhl
1
-1
/
+10
2022-06-23
chore: Fix unused warnings (#551)
Lucio Franco
1
-2
/
+2
2022-06-11
Fix chain remaining_mut(), allowing to chain growing buffer (#488)
Zettroke
1
-0
/
+22
2022-04-28
Fix bugs in `BytesMut::reserve_inner` (#544)
Jiahao XU
1
-0
/
+19
2022-03-16
Optimize BytesMut::reserve: Reuse vec if possible (#529)
Jiahao XU
1
-1
/
+1
2022-01-24
Implement `Extend<Bytes>` for `BytesMut` (#527)
Rob Ede
1
-0
/
+7
2022-01-24
Address various clippy warnings (#528)
Rob Ede
2
-6
/
+5
2021-11-07
Appease miri (#515)
Noah Kennedy
1
-39
/
+65
2021-08-24
impl From<Box<[u8]>> for Bytes (#504)
Ian Jackson
1
-0
/
+8
2021-08-09
BufMut::put_bytes(self, val, cnt) (#487)
Stepan Koltsov
2
-0
/
+26
2021-08-09
Clarify BufPut::put_int behavior (#486)
Stepan Koltsov
1
-0
/
+28
2021-08-07
Clarify BufMut allocation guarantees (#501)
Alice Ryhl
1
-2
/
+2
2021-07-05
Keep capacity when unsplit on empty other buf (#502)
Gbillou
1
-0
/
+25
2021-04-11
Specialize copy_to_bytes for Chain and Take (#481)
Stepan Koltsov
2
-0
/
+41
2021-02-15
override put_slice for &mut [u8] (#483)
Zettroke
1
-0
/
+3
2020-12-29
CI: run test suite in Miri (#456)
Ralf Jung
2
-3
/
+6
2020-12-18
Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
Carl Lerche
5
-21
/
+21
2020-10-20
Add `Buf::copy_to_bytes(len)` (#439)
Carl Lerche
2
-1
/
+18
2020-10-19
Switch `BufMut::bytes_mut` to`&mut UninitSlice` (#433)
Carl Lerche
2
-3
/
+31
2020-10-16
Make BufMut an unsafe trait (#432)
Carl Lerche
1
-1
/
+1
2020-10-16
remove ext traits (#431)
Carl Lerche
3
-5
/
+4
2020-10-16
Remove BufMut::bytes_vectored_mut() (#430)
Carl Lerche
1
-19
/
+0
2020-07-09
Change default lint level to warning and deny warnings in CI (#397)
Taiki Endo
9
-9
/
+9
2020-07-08
BytesMut: Reuse buffer when data fully consumed via Buf
Bryan Donlan
1
-0
/
+16
2020-05-22
Format with rustfmt (#389)
Taiki Endo
7
-14
/
+15
2020-05-22
Fix tests for no_std build (#384)
Cheng XU
4
-3
/
+11
2020-03-25
Fix #354 -- Make advance_mut impl of BufMut for Vec<u8> panic if cnt > remaining
Tim Hambourger
1
-3
/
+2
2020-03-24
Fix #352 -- Make freeze respect the start offset for BytesMuts in Vec mode
Tim Hambourger
1
-0
/
+66
2020-01-23
Do not panic on Bytes::slice_ref on empty slice (#355)
Stepan Koltsov
1
-15
/
+14
2020-01-22
Fix Bytes::truncate losing the original Vec's capacity (#361)
Sean McArthur
2
-1
/
+76
2019-12-17
Fix Bytes when Vec pointer's LSB is set (#346)
Sean McArthur
1
-0
/
+67
2019-12-12
Assert the LSB is 0 when converting Vec into Bytes
Sean McArthur
1
-2
/
+18
2019-12-10
Make Deref impls of Buf and BufMut forward more methods
Sean McArthur
2
-0
/
+59
2019-12-04
Add must_use to split, split_off, and split_to
Sean McArthur
1
-11
/
+11
2019-12-01
Fix regression in Bytes::truncate (#333)
Mikhail Zabaluev
1
-0
/
+12
2019-11-20
implicitly grow BytesMut; add BufMutExt::chain_mut (#316)
Carl Lerche
3
-11
/
+41
2019-11-13
Change loom tests to use cfg(loom) internally (#314)
Sean McArthur
1
-73
/
+0
2019-10-31
Move "extra" methods to extension traits (#306)
Sean McArthur
3
-6
/
+6
2019-10-24
Change BufMut methods that expose maybe-uninitialized bytes (#305)
Sean McArthur
2
-12
/
+15
2019-10-16
Remove Buf impl for &str (#301)
Sean McArthur
1
-1
/
+1
2019-10-16
Refactor Bytes to use an internal vtable (#298)
Sean McArthur
4
-163
/
+177
2019-08-27
Make From only for static slices to Bytes
Douman
1
-2
/
+2
2019-08-27
Remove IntoBuf/FromBuf (#288)
Douman
4
-43
/
+10
[next]