-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
29 lines (26 loc) · 962 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
26
27
28
29
module github.com/vmware-tanzu/vmotion-migration-tool-for-bosh-deployments
go 1.20
require (
github.com/cloudfoundry-community/gogobosh v0.0.0-20230404001200-d50e93bedc11
github.com/google/uuid v1.3.1
github.com/jessevdk/go-flags v1.5.0
github.com/maxbrunsfeld/counterfeiter/v6 v6.7.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
github.com/vmware/govmomi v0.32.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/whuang8/redactrus v1.0.2
golang.org/x/mod v0.13.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.13.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/tools v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)