2020-03-12 00:24:32 +03:00
|
|
|
module github.com/Azure/aks-traffic-manager
|
|
|
|
|
2022-09-30 10:40:07 +03:00
|
|
|
go 1.19
|
2020-03-12 00:24:32 +03:00
|
|
|
|
2020-03-26 04:05:48 +03:00
|
|
|
require (
|
2023-11-06 07:20:36 +03:00
|
|
|
github.com/Azure/go-autorest/autorest v0.11.29
|
2023-01-18 04:57:27 +03:00
|
|
|
github.com/onsi/ginkgo v1.16.5
|
2024-08-05 07:34:46 +03:00
|
|
|
github.com/onsi/gomega v1.34.1
|
2023-06-05 08:04:33 +03:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2022-09-30 10:40:07 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
2023-11-06 07:20:36 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
|
2022-09-30 10:40:07 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
2023-01-18 04:57:27 +03:00
|
|
|
github.com/fsnotify/fsnotify v1.4.9 // indirect
|
2023-11-06 07:20:36 +03:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
|
2023-11-02 11:57:09 +03:00
|
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
2022-09-30 10:40:07 +03:00
|
|
|
github.com/kr/pretty v0.1.0 // indirect
|
2023-01-18 04:57:27 +03:00
|
|
|
github.com/nxadm/tail v1.4.8 // indirect
|
2024-08-05 07:34:46 +03:00
|
|
|
golang.org/x/crypto v0.25.0 // indirect
|
|
|
|
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
|
|
|
|
golang.org/x/net v0.27.0 // indirect
|
|
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
|
|
golang.org/x/text v0.16.0 // indirect
|
2020-03-26 04:05:48 +03:00
|
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
2022-09-30 10:40:07 +03:00
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
2023-01-18 04:54:29 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2020-03-26 04:05:48 +03:00
|
|
|
)
|