-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update all non-major dependencies
- Loading branch information
1 parent
78445dc
commit 8acfe94
Showing
10 changed files
with
4,148 additions
and
1,213 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,40 @@ | ||
module github.com/tum-dev/gocast/runner | ||
|
||
go 1.21.0 | ||
go 1.22 | ||
|
||
toolchain go1.21.3 | ||
toolchain go1.24.0 | ||
|
||
require ( | ||
github.com/caarlos0/env v3.5.0+incompatible | ||
github.com/google/uuid v1.4.0 | ||
github.com/icza/gox v0.0.0-20230924165045-adcb03233bb5 | ||
github.com/shirou/gopsutil/v3 v3.24.1 | ||
golang.org/x/sync v0.6.0 | ||
google.golang.org/grpc v1.61.0 | ||
google.golang.org/protobuf v1.32.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/icza/gox v0.2.0 | ||
github.com/prometheus/client_golang v1.21.0 | ||
github.com/sethvargo/go-retry v0.3.0 | ||
github.com/shirou/gopsutil/v3 v3.24.5 | ||
github.com/sirupsen/logrus v1.9.3 | ||
golang.org/x/sync v0.11.0 | ||
google.golang.org/grpc v1.70.0 | ||
google.golang.org/protobuf v1.36.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20231016141302-07b5767bb0ed // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect | ||
github.com/sethvargo/go-retry v0.3.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.62.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||
github.com/tklauser/go-sysconf v0.3.13 // indirect | ||
github.com/tklauser/numcpus v0.7.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect | ||
) |
Oops, something went wrong.