mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-25 06:49:31 +01:00
66 lines
2.8 KiB
Modula-2
66 lines
2.8 KiB
Modula-2
module github.com/acouvreur/traefik-ondemand-service
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
|
github.com/docker/docker v20.10.15+incompatible
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.7.1
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/apimachinery v0.24.0
|
|
k8s.io/client-go v0.24.0
|
|
)
|
|
|
|
require (
|
|
github.com/acouvreur/tinykv v0.0.0-20220511194520-45fc921a4a83
|
|
k8s.io/api v0.24.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/docker/distribution v2.8.1+incompatible // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/emicklei/go-restful v2.15.0+incompatible // indirect
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
|
github.com/go-openapi/swag v0.21.1 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/gnostic v0.6.9 // indirect
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/objx v0.3.0 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
|
|
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gotest.tools/v3 v3.0.3 // indirect
|
|
k8s.io/klog/v2 v2.60.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20220413171646-5e7f5fdc6da6 // indirect
|
|
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
|
|
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|