mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
Updated various dependencies in `go.mod` and `go.sum` to their latest versions, including `golang.org/x/sys`, `github.com/go-co-op/gocron`, and more. Increased the Go version to 1.23.0 and added toolchain specification for Go 1.24.0. These updates improve compatibility, security, and maintainability.
38 lines
1.3 KiB
Modula-2
38 lines
1.3 KiB
Modula-2
module oneuptime-infrastructure-agent
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.24.0
|
|
|
|
require (
|
|
github.com/go-co-op/gocron/v2 v2.16.0
|
|
github.com/gookit/config/v2 v2.2.5
|
|
github.com/kardianos/service v1.2.2
|
|
github.com/shirou/gopsutil/v3 v3.24.5
|
|
)
|
|
|
|
replace gopkg.in/alecthomas/kingpin.v2 v2.4.0 => github.com/alecthomas/kingpin/v2 v2.4.0
|
|
|
|
require (
|
|
dario.cat/mergo v1.0.1 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gookit/color v1.5.4 // indirect
|
|
github.com/gookit/goutil v0.6.18 // indirect
|
|
github.com/jonboulle/clockwork v0.5.0 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20250224150550-a661cff19cfb // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.14 // indirect
|
|
github.com/tklauser/numcpus v0.9.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
|
|
golang.org/x/sync v0.11.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
golang.org/x/term v0.29.0 // indirect
|
|
golang.org/x/text v0.22.0 // indirect
|
|
)
|