mirror of
https://github.com/traefik/mesh.git
synced 2026-05-02 18:32:32 +00:00
79 lines
3.4 KiB
Modula-2
79 lines
3.4 KiB
Modula-2
module github.com/traefik/mesh/v2
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/cenkalti/backoff/v4 v4.1.1
|
|
github.com/go-check/check v0.0.0-20180628173108-788fd7840127
|
|
github.com/google/uuid v1.2.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/hashicorp/go-version v1.3.0
|
|
github.com/miekg/dns v1.1.43
|
|
github.com/servicemeshinterface/smi-sdk-go v0.4.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/traefik/paerser v0.1.4
|
|
github.com/traefik/traefik/v2 v2.5.6
|
|
github.com/vdemeester/shakers v0.1.0
|
|
k8s.io/api v0.22.5
|
|
k8s.io/apimachinery v0.22.5
|
|
k8s.io/client-go v0.22.5
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1 // indirect
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.1.1 // indirect
|
|
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
|
|
github.com/go-acme/lego/v4 v4.5.3 // indirect
|
|
github.com/go-logr/logr v0.4.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.5 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
github.com/gorilla/context v1.1.1 // indirect
|
|
github.com/huandu/xstrings v1.3.1 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/mitchellh/copystructure v1.0.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
|
|
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 // indirect
|
|
golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2 // indirect
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/klog/v2 v2.9.0 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c // indirect
|
|
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
|
|
sigs.k8s.io/yaml v1.2.0 // indirect
|
|
)
|
|
|
|
// Containous forks
|
|
replace (
|
|
github.com/abbot/go-http-auth => github.com/containous/go-http-auth v0.4.1-0.20200324110947-a37a7636d23e
|
|
github.com/go-check/check => github.com/containous/check v0.0.0-20170915194414-ca0bf163426a
|
|
github.com/gorilla/mux => github.com/containous/mux v0.0.0-20200408164629-f779179d490a
|
|
github.com/mailgun/minheap => github.com/containous/minheap v0.0.0-20190809180810-6e71eb837595
|
|
github.com/mailgun/multibuf => github.com/containous/multibuf v0.0.0-20190809014333-8b6c9a7e6bba
|
|
)
|