forked from traefik/mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
35 lines (31 loc) · 1.47 KB
/
go.mod
File metadata and controls
35 lines (31 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module github.com/containous/maesh
go 1.13
// Kubernetes version kubernetes-1.15.3
require (
github.com/cenkalti/backoff/v3 v3.0.0
github.com/containous/traefik/v2 v2.0.2
github.com/deislabs/smi-sdk-go v0.0.0-20190819154013-e53a9b2d8c1a
github.com/go-check/check v0.0.0-20180628173108-788fd7840127
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.3
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.4.0
github.com/vdemeester/shakers v0.1.0
golang.org/x/sync v0.0.0-20190423024810-112230192c58
k8s.io/api v0.0.0-20190819141258-3544db3b9e44
k8s.io/apimachinery v0.0.0-20190817020851-f2f3a405f61d
k8s.io/client-go v0.0.0-20190819141724-e14f31a72a77
)
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.1.0+incompatible
github.com/docker/docker => github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
)
// Containous forks
replace (
github.com/abbot/go-http-auth => github.com/containous/go-http-auth v0.4.1-0.20180112153951-65b0cdae8d7f
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-20181024131434-c33f32e26898
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
github.com/rancher/go-rancher-metadata => github.com/containous/go-rancher-metadata v0.0.0-20190402144056-c6a65f8b7a28
)