Skip to content

Releases: Le0X8/dh

v0.8.0

13 Nov 17:12
e1ccf84
Compare
Choose a tag to compare

Added

  • std::io::seek to prelude

Changed

  • Fixed limited readers
  • Fixed README
  • Fixed double rewind method
  • VecRef readers can now read any type of u8 array/vector reference

Removed

nothing

v0.7.2

31 Oct 21:04
d0f38d6
Compare
Choose a tag to compare

Added

nothing

Changed

  • Fixed string types (&String to &str) for cleaner code and better memory management

Removed

nothing

v0.7.1

29 Oct 16:21
6b5a16f
Compare
Choose a tag to compare

Added

nothing

Changed

  • Fixed doctests

Removed

nothing

v0.7.0

29 Oct 16:20
f29b4e0
Compare
Choose a tag to compare

Added

  • Direct read/write source access

Changed

nothing

Removed

  • File locking & pre-allocation
  • fs4 dependency

v0.6.1

10 Oct 17:04
3d5c366
Compare
Choose a tag to compare

Added

  • Now you can get your limited reference back!

Changed

nothing

Removed

nothing

v0.6.0

10 Oct 16:53
8c77a36
Compare
Choose a tag to compare

Added

nothing

Changed

nothing

Removed

  • Sized requirement for limiting

v0.5.0

10 Oct 16:16
12feb12
Compare
Choose a tag to compare

Added

nothing

Changed

  • Readable, Writable and Rw are dyn again, they don't need generics anymore

Removed

nothing

v0.4.0: Added partial reading and writing

03 Oct 19:33
aba86bc
Compare
Choose a tag to compare

Added

  • Partial reading and writing

Changed

  • Readable, Writable and Rw are not dyn anymore, they need generics now

Removed

nothing

v0.3.0: Added Seekable trait

03 Oct 17:04
a305c20
Compare
Choose a tag to compare

Added

  • copying from Readable to Writable
  • reading and writing raw bytes
  • Seekable trait that unites seeking functionality from Readable and Writable
  • Non-blocking file locking
  • a prelude for the crate and most important traits
  • CI

Changed

  • docs are way more detailed now
  • fixed variable length integers
  • fixed signed integers
  • existing files in write mode don't get overwritten anymore
  • closing a vector reader or writer doesn't use the Result return type anymore

Removed

  • Rw::rw_rewind -> Seekable::rewind
  • Rw::rw_end -> Seekable::end
  • Rw::rw_to -> Seekable::to
  • Rw::rw_jump -> Seekable::jump
  • Rw::rw_size -> Seekable::size

v0.2.0: Added u8 vector handling

01 Oct 15:16
c4be1f1
Compare
Choose a tag to compare

Added

  • u8 vector reading
  • u8 vector writing
  • u8 vector R/W
  • a documentation
  • a crate prelude

Changed

  • Readable.close, Writable.close and Rw.rw_close now may have a return type

Removed

nothing