Skip to content

Commit 2c0e99a

Browse files
author
Jordan Halterman
committed
Clean up dependencies
1 parent 4907087 commit 2c0e99a

2 files changed

Lines changed: 306 additions & 23 deletions

File tree

controller/go.mod

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,33 @@ module github.com/atomix/runtime/controller
33
go 1.18
44

55
require (
6-
github.com/atomix/api v0.0.0-20220517064555-1a41fdda0a79
7-
github.com/atomix/sdk v0.0.3-0.20220517083411-a8ffd9bcf738
8-
github.com/gofrs/flock v0.8.1
96
github.com/spf13/cobra v1.4.0
107
google.golang.org/grpc v1.46.0
11-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
128
k8s.io/apimachinery v0.24.0
139
)
1410

1511
require (
16-
github.com/fsnotify/fsnotify v1.5.1 // indirect
12+
github.com/go-logr/logr v1.2.0 // indirect
1713
github.com/gogo/protobuf v1.3.2 // indirect
1814
github.com/golang/protobuf v1.5.2 // indirect
19-
github.com/hashicorp/hcl v1.0.0 // indirect
15+
github.com/google/go-cmp v0.5.7 // indirect
16+
github.com/google/gofuzz v1.1.0 // indirect
2017
github.com/inconshreveable/mousetrap v1.0.0 // indirect
21-
github.com/kr/text v0.2.0 // indirect
22-
github.com/magiconair/properties v1.8.6 // indirect
23-
github.com/mitchellh/go-homedir v1.1.0 // indirect
24-
github.com/mitchellh/mapstructure v1.4.3 // indirect
25-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
26-
github.com/pelletier/go-toml v1.9.4 // indirect
27-
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
28-
github.com/spf13/afero v1.8.2 // indirect
29-
github.com/spf13/cast v1.4.1 // indirect
30-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
18+
github.com/json-iterator/go v1.1.12 // indirect
19+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
20+
github.com/modern-go/reflect2 v1.0.2 // indirect
3121
github.com/spf13/pflag v1.0.5 // indirect
32-
github.com/spf13/viper v1.11.0 // indirect
33-
github.com/subosito/gotenv v1.2.0 // indirect
34-
go.uber.org/atomic v1.7.0 // indirect
35-
go.uber.org/multierr v1.6.0 // indirect
36-
go.uber.org/zap v1.21.0 // indirect
22+
github.com/stretchr/testify v1.7.1 // indirect
3723
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
3824
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
3925
golang.org/x/text v0.3.7 // indirect
26+
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
4027
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
4128
google.golang.org/protobuf v1.28.0 // indirect
42-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
43-
gopkg.in/ini.v1 v1.66.4 // indirect
29+
gopkg.in/inf.v0 v0.9.1 // indirect
4430
gopkg.in/yaml.v2 v2.4.0 // indirect
31+
k8s.io/klog/v2 v2.60.1 // indirect
32+
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
33+
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
34+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
4535
)

0 commit comments

Comments
 (0)