Releases: a1phyr/sync_file
Releases · a1phyr/sync_file
Version 0.2.8
Version 0.2.7
- Implement I/O safety traits
- Update MSRV to 1.63
Version 0.2.6
- Add
WriteAt::flush
Version 0.2.5
- Add
Adapter
to make aio::Read
/io::Write
/io::Seek
wrapper around aReadAt
/WriteAt
Version 0.2.4
- Update MSRV badge in README
- Doc improvements
Version 0.2.3
- Add
RandomAccessFile::try_clone
- Use
wasi
crate to support nativeRandomAccessFile::read_at
on stable - Use edition 2021
Version 0.2.2
- Fix
io::Empty::read_exact_at
returningErr
with empty buffers
Version 0.2.1
- Impl
From<RandomAccessFile>
forSyncFile
Version 0.2.0
Added:
- Traits
ReadAt
andWriteAt
SyncFile::offset
RandomAccessFile
Changed:
- Some methods of
SyncFile
are no longer inherent methods but are available throughDeref<Target = RandomAccessFile>
- Some methods of
SyncFile
are no longer inherent methods but are available through traitsReadAt
andWriteAt
Version 0.1.2
Added:
- Expose platform-independent positional I/O:
read_at
,read_exact_at
,write_at
,write_exact_at