mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-09 15:08:13 +02:00
We need this because Go < 1.23 produces binaries that dont work on modern OpenBSD because OpenBSD decided to remove syscall() from their libc. Mad buggers, who removes functions from libc breaking all binaries!! Also increase minimum macOS version to 11.0 as Go 1.23 requires that
36 lines
1.2 KiB
Modula-2
36 lines
1.2 KiB
Modula-2
module kitty
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/ALTree/bigfloat v0.2.0
|
|
github.com/alecthomas/chroma/v2 v2.14.0
|
|
github.com/bmatcuk/doublestar/v4 v4.6.1
|
|
github.com/dlclark/regexp2 v1.11.4
|
|
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 v1.6.3
|
|
github.com/seancfoley/ipaddress-go v1.6.0
|
|
github.com/shirou/gopsutil/v3 v3.24.5
|
|
github.com/zeebo/xxh3 v1.0.2
|
|
golang.org/x/exp v0.0.0-20230801115018-d63ba01acd4b
|
|
golang.org/x/image v0.19.0
|
|
golang.org/x/sys v0.24.0
|
|
howett.net/plist v1.0.1
|
|
)
|
|
|
|
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
|
|
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
|
|
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd // indirect
|
|
github.com/seancfoley/bintree v1.3.1 // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
)
|