forked from istio/istio.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
25 lines (18 loc) · 973 Bytes
/
go.mod
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
module istio.io/istio.io
go 1.16
replace github.com/spf13/viper => github.com/istio/viper v1.3.3-0.20190515210538-2789fed3109c
// Old version had no license
replace github.com/chzyer/logex => github.com/chzyer/logex v1.1.11-0.20170329064859-445be9e134b2
// Avoid pulling in incompatible libraries
replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
replace github.com/docker/docker => github.com/moby/moby v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible
// Client-go does not handle different versions of mergo due to some breaking changes - use the matching version
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
require (
github.com/golang/sync v0.0.0-20180314180146-1d60e4601c6f
github.com/pmezard/go-difflib v1.0.0
istio.io/istio v0.0.0-20211105110815-25209af8b7ba
istio.io/pkg v0.0.0-20211029152315-2022c99775d0
k8s.io/apimachinery v0.22.2
k8s.io/client-go v0.22.2
)