forked from metacontroller/metacontroller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 697 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 697 Bytes
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 metacontroller
// This denotes the minimum supported language version and
// should not include the patch version.
go 1.16
require (
github.com/evanphx/json-patch/v5 v5.5.0
github.com/go-logr/logr v0.4.0
github.com/google/go-cmp v0.5.6
github.com/nsf/jsondiff v0.0.0-20210303162244-6ea32392771e // test
go.uber.org/zap v1.18.1
k8s.io/api v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/client-go v0.21.3
k8s.io/klog/v2 v2.10.0
k8s.io/utils v0.0.0-20210722164352-7f3ee0f31471
sigs.k8s.io/controller-runtime v0.9.5
)
replace (
k8s.io/apimachinery => k8s.io/apimachinery v0.21.3
k8s.io/client-go => k8s.io/client-go v0.21.3
k8s.io/component-base => k8s.io/component-base v0.21.3
)