|
1 | 1 | module github.com/atomix/runtime/controller |
2 | 2 |
|
3 | 3 | go 1.18 |
| 4 | + |
| 5 | +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 |
| 9 | + github.com/spf13/cobra v1.4.0 |
| 10 | + google.golang.org/grpc v1.46.0 |
| 11 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b |
| 12 | + k8s.io/apimachinery v0.24.0 |
| 13 | +) |
| 14 | + |
| 15 | +require ( |
| 16 | + github.com/fsnotify/fsnotify v1.5.1 // indirect |
| 17 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 18 | + github.com/golang/protobuf v1.5.2 // indirect |
| 19 | + github.com/hashicorp/hcl v1.0.0 // indirect |
| 20 | + 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 |
| 31 | + 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 |
| 37 | + golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect |
| 38 | + golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect |
| 39 | + golang.org/x/text v0.3.7 // indirect |
| 40 | + google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect |
| 41 | + 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 |
| 44 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 45 | +) |
0 commit comments