diff options
| author | 2026-02-22 11:38:41 +0800 | |
|---|---|---|
| committer | 2026-02-22 11:38:41 +0800 | |
| commit | b7fefa848ff5d80401e12b4eb8ee4fbea9e44fd3 (patch) | |
| tree | d8ba0dbd70fefd2f684deb21d2b688be40863d33 /internal/zlib/reader.go | |
| parent | adler32: Import (diff) | |
| signature | No signature | |
zlib: Use internal adler32
Diffstat (limited to 'internal/zlib/reader.go')
| -rw-r--r-- | internal/zlib/reader.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/zlib/reader.go b/internal/zlib/reader.go index 60383ee1..5d6dcd88 100644 --- a/internal/zlib/reader.go +++ b/internal/zlib/reader.go @@ -38,10 +38,11 @@ import ( "encoding/binary" "errors" "hash" - "hash/adler32" "io" "sync" + "codeberg.org/lindenii/furgit/internal/adler32" + "github.com/klauspost/compress/flate" ) |
