2022-08-14 16:06:03 +03:00
|
|
|
module kitty
|
|
|
|
|
2023-02-03 07:02:56 +03:00
|
|
|
go 1.20
|
2022-08-14 16:06:03 +03:00
|
|
|
|
|
|
|
require (
|
2022-08-25 15:46:03 +03:00
|
|
|
github.com/ALTree/bigfloat v0.0.0-20220102081255-38c8b72a9924
|
2023-07-03 06:24:36 +03:00
|
|
|
github.com/alecthomas/chroma/v2 v2.8.0
|
2023-04-18 06:35:28 +03:00
|
|
|
github.com/bmatcuk/doublestar/v4 v4.6.0
|
2023-01-01 19:05:31 +03:00
|
|
|
github.com/disintegration/imaging v1.6.2
|
2023-06-05 06:43:04 +03:00
|
|
|
github.com/dlclark/regexp2 v1.10.0
|
2023-02-26 08:41:42 +03:00
|
|
|
github.com/google/go-cmp v0.5.9
|
2022-08-25 15:46:03 +03:00
|
|
|
github.com/google/uuid v1.3.0
|
2022-08-25 08:35:59 +03:00
|
|
|
github.com/jamesruan/go-rfc1924 v0.0.0-20170108144916-2767ca7c638f
|
2023-04-18 06:43:08 +03:00
|
|
|
github.com/seancfoley/ipaddress-go v1.5.4
|
2023-08-04 19:10:04 +03:00
|
|
|
github.com/shirou/gopsutil/v3 v3.23.7
|
2023-07-02 17:57:17 +03:00
|
|
|
github.com/zeebo/xxh3 v1.0.2
|
2023-08-04 19:10:04 +03:00
|
|
|
golang.org/x/exp v0.0.0-20230801115018-d63ba01acd4b
|
2023-08-07 06:14:38 +03:00
|
|
|
golang.org/x/image v0.11.0
|
2023-08-04 19:10:04 +03:00
|
|
|
golang.org/x/sys v0.11.0
|
2023-06-25 10:42:35 +03:00
|
|
|
howett.net/plist v1.0.0
|
2022-08-14 16:06:03 +03:00
|
|
|
)
|
|
|
|
|
2023-02-26 08:41:42 +03:00
|
|
|
require (
|
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
2023-08-04 19:10:04 +03:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
2023-04-18 06:43:08 +03:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a // indirect
|
|
|
|
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
|
2023-02-26 08:41:42 +03:00
|
|
|
github.com/seancfoley/bintree v1.2.1 // indirect
|
2023-06-05 06:43:12 +03:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2023-02-26 08:41:42 +03:00
|
|
|
github.com/tklauser/go-sysconf v0.3.11 // indirect
|
2023-08-04 19:10:04 +03:00
|
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
2023-06-05 06:43:12 +03:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.3 // indirect
|
2023-02-26 08:41:42 +03:00
|
|
|
)
|