blob: 01cb9000bdc2c0a71f1d7f70921dee729481d710 [file] [log] [blame]
Filip Tehlar229f5fc2022-08-09 14:44:47 +00001module fd.io/hs-test
2
Adrian Villin4995d0d2024-07-29 17:54:58 +02003go 1.22.5
Filip Tehlar229f5fc2022-08-09 14:44:47 +00004
5require (
Adrian Villin4995d0d2024-07-29 17:54:58 +02006 github.com/cilium/cilium v1.15.7
7 github.com/docker/docker v27.1.1+incompatible
Adrian Villin25140012024-07-09 15:31:36 +02008 github.com/docker/go-units v0.5.0
adrianvillin707210c2024-01-24 01:45:59 -05009 github.com/edwarnicke/exechelper v1.0.3
Adrian Villin4995d0d2024-07-29 17:54:58 +020010 github.com/onsi/ginkgo/v2 v2.17.2
11 github.com/onsi/gomega v1.33.1
12 github.com/sirupsen/logrus v1.9.3
Dave Wallace83b12bf2024-04-25 16:21:37 -040013 go.fd.io/govpp v0.10.0
Maros Ondrejickaf719adf2022-12-20 15:10:50 +010014 gopkg.in/yaml.v3 v3.0.1
Filip Tehlar229f5fc2022-08-09 14:44:47 +000015)
16
17require (
Adrian Villin4995d0d2024-07-29 17:54:58 +020018 github.com/Microsoft/go-winio v0.6.2 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020019 github.com/containerd/log v0.1.0 // indirect
20 github.com/distribution/reference v0.6.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020021 github.com/docker/go-connections v0.4.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020022 github.com/felixge/httpsnoop v1.0.4 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020023 github.com/fsnotify/fsnotify v1.7.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020024 github.com/go-logr/logr v1.4.2 // indirect
25 github.com/go-logr/stdr v1.2.2 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020026 github.com/go-openapi/errors v0.22.0 // indirect
27 github.com/go-openapi/strfmt v0.23.0 // indirect
28 github.com/go-openapi/swag v0.23.0 // indirect
29 github.com/go-openapi/validate v0.24.0 // indirect
30 github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020031 github.com/gogo/protobuf v1.3.2 // indirect
Adrian Villincee15aa2024-03-14 11:42:55 -040032 github.com/google/go-cmp v0.6.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020033 github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
34 github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
35 github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
36 github.com/lunixbochs/struc v0.0.0-20200521075829-a4cb8d33dbbe // indirect
Adrian Villin25140012024-07-09 15:31:36 +020037 github.com/moby/docker-image-spec v1.3.1 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020038 github.com/opencontainers/go-digest v1.0.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020039 github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
40 github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
41 github.com/pkg/errors v0.9.1 // indirect
42 github.com/sasha-s/go-deadlock v0.3.1 // indirect
43 github.com/spf13/cobra v1.8.1 // indirect
44 github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace // indirect
45 github.com/spf13/viper v1.19.0 // indirect
46 github.com/vishvananda/netns v0.0.4 // indirect
47 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020048 go.opentelemetry.io/otel v1.28.0 // indirect
49 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 // indirect
50 go.opentelemetry.io/otel/metric v1.28.0 // indirect
51 go.opentelemetry.io/otel/sdk v1.28.0 // indirect
52 go.opentelemetry.io/otel/trace v1.28.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020053 golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020054 golang.org/x/net v0.26.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020055 golang.org/x/sync v0.7.0 // indirect
56 golang.org/x/sys v0.21.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020057 golang.org/x/text v0.16.0 // indirect
58 golang.org/x/time v0.5.0 // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020059 golang.org/x/tools v0.22.0 // indirect
Adrian Villin25140012024-07-09 15:31:36 +020060 google.golang.org/protobuf v1.34.2 // indirect
Filip Tehlar229f5fc2022-08-09 14:44:47 +000061 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
Adrian Villin4995d0d2024-07-29 17:54:58 +020062 gotest.tools/v3 v3.5.1 // indirect
63 k8s.io/apimachinery v0.30.2 // indirect
64 k8s.io/client-go v0.30.2 // indirect
65 k8s.io/klog/v2 v2.120.1 // indirect
66 k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 // indirect
Filip Tehlar229f5fc2022-08-09 14:44:47 +000067)