seezee 0.1.0

A seekable `zstd` compressed buffer
Documentation
  • Coverage
  • 0%
    0 out of 10 items documented0 out of 9 items with examples
  • Size
  • Source code size: 23.14 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 361.44 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 30s Average build duration of successful builds.
  • all releases: 30s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Swatinem

Seezee

A seekable zstd compressed buffer.

This is very similar to the seekable format extension, with some small differences:

  • The resulting buffer is not a valid zstd file, and cannot be handled directly by other zstd decompression tools.
  • All frames have the same (uncompressed) size, so there is no need to store than and binary search.
  • Frames are stored without the zstd magic, saving a few bytes.

I might add support for an embedded dictionary in the future.