switch to a maintained fork of imaging

This commit is contained in:
Kovid Goyal 2024-03-22 10:38:22 +05:30
parent e818f01ff2
commit 3b74fcb88c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 6 additions and 3 deletions

3
go.mod
View File

@ -6,11 +6,11 @@ require (
github.com/ALTree/bigfloat v0.2.0
github.com/alecthomas/chroma/v2 v2.13.0
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/disintegration/imaging v1.6.2
github.com/dlclark/regexp2 v1.11.0
github.com/edwvee/exiffix v0.0.0-20240229113213-0dbb146775be
github.com/google/go-cmp v0.6.0
github.com/google/uuid v1.6.0
github.com/kovidgoyal/imaging v0.0.0-20240322050321-d7a0df91ac63
github.com/seancfoley/ipaddress-go v1.5.5
github.com/shirou/gopsutil/v3 v3.24.2
github.com/zeebo/xxh3 v1.0.2
@ -21,6 +21,7 @@ require (
)
require (
github.com/disintegration/imaging v1.6.2 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a // indirect

2
go.sum
View File

@ -30,6 +30,8 @@ github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSo
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg=
github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
github.com/kovidgoyal/imaging v0.0.0-20240322050321-d7a0df91ac63 h1:yAMlIPk4ogGbHWjoxx9sPoQtPGqNHLIgkr0HqZSO7L8=
github.com/kovidgoyal/imaging v0.0.0-20240322050321-d7a0df91ac63/go.mod h1:sHvcLOOVhJuto2IoNdPLEqnAUoL5ZfHEF0PpNH+882g=
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0/go.mod h1:zJYVVT2jmtg6P3p1VtQj7WsuWi/y4VnjVBn7F8KPB3I=
github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a h1:N9zuLhTvBSRt0gWSiJswwQ2HqDmtX/ZCDJURnKUt1Ik=
github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a/go.mod h1:JKx41uQRwqlTZabZc+kILPrO/3jlKnQ2Z8b7YiVw5cE=

View File

@ -12,8 +12,8 @@ import (
"kitty/tools/utils/images"
"kitty/tools/utils/shm"
"github.com/disintegration/imaging"
"github.com/edwvee/exiffix"
"github.com/kovidgoyal/imaging"
)
var _ = fmt.Print

View File

@ -21,8 +21,8 @@ import (
"kitty/tools/utils"
"kitty/tools/utils/shm"
"github.com/disintegration/imaging"
"github.com/edwvee/exiffix"
"github.com/kovidgoyal/imaging"
"golang.org/x/exp/slices"
)