diff options
| author | 2025-11-18 00:00:00 +0000 | |
|---|---|---|
| committer | 2025-11-18 00:00:00 +0000 | |
| commit | 4835a74451d7243607005962e3165f6be73a1924 (patch) | |
| tree | 7e3877b96ff31433a8531013f4c4b55e6113273d | |
| parent | Faster than libgit2 at recursive ls-tree (diff) | |
| signature | ||
Fix import order
| -rw-r--r-- | loose.go | 3 | ||||
| -rw-r--r-- | pack_pack.go | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -2,12 +2,13 @@ package furgit import ( "bytes" - "git.sr.ht/~runxiyu/furgit/internal/zlib" "fmt" "io" "os" "path/filepath" "strconv" + + "git.sr.ht/~runxiyu/furgit/internal/zlib" ) const looseHeaderLimit = 4096 diff --git a/pack_pack.go b/pack_pack.go index 401fcfa8..75cd282e 100644 --- a/pack_pack.go +++ b/pack_pack.go @@ -2,7 +2,6 @@ package furgit import ( "bytes" - "git.sr.ht/~runxiyu/furgit/internal/zlib" "encoding/binary" "errors" "fmt" @@ -12,6 +11,8 @@ import ( "sync" "syscall" + "git.sr.ht/~runxiyu/furgit/internal/zlib" + "git.sr.ht/~runxiyu/furgit/internal/bufpool" ) |
