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/writer.go | |
| parent | adler32: Import (diff) | |
| signature | No signature | |
zlib: Use internal adler32
Diffstat (limited to 'internal/zlib/writer.go')
| -rw-r--r-- | internal/zlib/writer.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/zlib/writer.go b/internal/zlib/writer.go index 608e35f2..78ec8034 100644 --- a/internal/zlib/writer.go +++ b/internal/zlib/writer.go @@ -8,10 +8,11 @@ import ( "encoding/binary" "fmt" "hash" - "hash/adler32" "io" "sync" + "codeberg.org/lindenii/furgit/internal/adler32" + "github.com/klauspost/compress/flate" ) |
