Releases: nlepage/go-tarfs
Releases · nlepage/go-tarfs
v1.2.1
v1.2.0
- ✨ Read files content lazily (#14)
- Stop reading all files content in memory
- Read whole tar file once and record position of each file
- Create a specific
tar.Reader
each time a file needs to be read - If the given
io.Reader
isn't anio.ReaderAt
, fallback to reading the whole tar file in a buffer - Reimplement
io.Seeker
overtar.Reader
to allow usage withhttp.FS
Huge thanks to @joelanford for his ideas, contributions, reviews, and patience.