2022-08-14 16:06:03 +03:00
|
|
|
module kitty
|
|
|
|
|
2023-08-09 09:28:16 +03:00
|
|
|
go 1.21
|
2022-08-14 16:06:03 +03:00
|
|
|
|
|
|
|
require (
|
2023-09-25 06:51:21 +03:00
|
|
|
github.com/ALTree/bigfloat v0.2.0
|
2023-12-11 06:22:52 +03:00
|
|
|
github.com/alecthomas/chroma/v2 v2.12.0
|
2023-10-23 06:19:21 +03:00
|
|
|
github.com/bmatcuk/doublestar/v4 v4.6.1
|
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-10-16 06:20:56 +03:00
|
|
|
github.com/google/go-cmp v0.6.0
|
2023-12-18 06:31:14 +03:00
|
|
|
github.com/google/uuid v1.5.0
|
2023-09-25 06:51:21 +03:00
|
|
|
github.com/seancfoley/ipaddress-go v1.5.5
|
2024-01-01 06:10:29 +03:00
|
|
|
github.com/shirou/gopsutil/v3 v3.23.12
|
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
|
2024-01-08 06:37:59 +03:00
|
|
|
golang.org/x/image v0.15.0
|
|
|
|
golang.org/x/sys v0.16.0
|
2023-12-04 06:25:11 +03:00
|
|
|
howett.net/plist v1.0.1
|
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-09-25 06:51:21 +03:00
|
|
|
github.com/seancfoley/bintree v1.2.3 // indirect
|
2023-06-05 06:43:12 +03:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2023-09-25 06:51:21 +03:00
|
|
|
github.com/tklauser/go-sysconf v0.3.12 // 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
|
|
|
)
|