|
1 | 1 | module github.com/GoogleCloudPlatform/compute-image-import/cli_tools |
2 | 2 |
|
3 | | -go 1.13 |
| 3 | +go 1.21.5 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | cloud.google.com/go/compute/metadata v0.2.3 |
7 | 7 | cloud.google.com/go/logging v1.7.0 |
8 | 8 | cloud.google.com/go/storage v1.31.0 |
9 | | - cos.googlesource.com/cos/tools.git v0.0.0-20210104210903-4b3bc7d49b79 // indirect |
10 | 9 | github.com/GoogleCloudPlatform/compute-daisy v0.0.0-20231114191308-36d2ee64eace |
11 | 10 | github.com/GoogleCloudPlatform/compute-image-import/common v0.0.0-00010101000000-000000000000 |
12 | 11 | github.com/GoogleCloudPlatform/compute-image-import/proto/go v0.0.0-00010101000000-000000000000 |
13 | 12 | github.com/GoogleCloudPlatform/osconfig v0.0.0-20210202205636-8f5a30e8969f |
14 | 13 | github.com/aws/aws-sdk-go v1.37.5 |
15 | 14 | github.com/cenkalti/backoff/v4 v4.1.0 |
16 | 15 | github.com/dustin/go-humanize v1.0.0 |
17 | | - github.com/go-ole/go-ole v1.2.5 // indirect |
18 | 16 | github.com/go-playground/validator/v10 v10.4.1 |
19 | 17 | github.com/golang/mock v1.6.0 |
20 | 18 | github.com/google/go-cmp v0.5.9 |
21 | 19 | github.com/google/logger v1.1.0 |
22 | 20 | github.com/google/uuid v1.3.0 |
23 | | - github.com/leodido/go-urn v1.2.1 // indirect |
24 | 21 | github.com/minio/highwayhash v1.0.1 |
25 | 22 | github.com/stretchr/testify v1.8.3 |
26 | 23 | github.com/vmware/govmomi v0.24.0 |
27 | | - go.chromium.org/luci v0.0.0-20210204234011-34a994fe5aec // indirect |
28 | 24 | golang.org/x/sync v0.3.0 |
29 | 25 | golang.org/x/sys v0.15.0 |
30 | 26 | google.golang.org/api v0.129.0 |
31 | 27 | google.golang.org/protobuf v1.31.0 |
32 | 28 | ) |
33 | 29 |
|
| 30 | +require ( |
| 31 | + cloud.google.com/go v0.110.3 // indirect |
| 32 | + cloud.google.com/go/compute v1.20.1 // indirect |
| 33 | + cloud.google.com/go/iam v1.1.1 // indirect |
| 34 | + cloud.google.com/go/longrunning v0.5.1 // indirect |
| 35 | + cos.googlesource.com/cos/tools.git v0.0.0-20210104210903-4b3bc7d49b79 // indirect |
| 36 | + github.com/GoogleCloudPlatform/guest-logging-go v0.0.0-20200113214433-6cbb518174d4 // indirect |
| 37 | + github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect |
| 38 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 39 | + github.com/go-ole/go-ole v1.2.5 // indirect |
| 40 | + github.com/go-playground/locales v0.13.0 // indirect |
| 41 | + github.com/go-playground/universal-translator v0.17.0 // indirect |
| 42 | + github.com/golang/glog v1.1.0 // indirect |
| 43 | + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 44 | + github.com/golang/protobuf v1.5.3 // indirect |
| 45 | + github.com/google/s2a-go v0.1.4 // indirect |
| 46 | + github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect |
| 47 | + github.com/googleapis/gax-go/v2 v2.11.0 // indirect |
| 48 | + github.com/jmespath/go-jmespath v0.4.0 // indirect |
| 49 | + github.com/julienschmidt/httprouter v1.3.0 // indirect |
| 50 | + github.com/klauspost/compress v1.15.9 // indirect |
| 51 | + github.com/leodido/go-urn v1.2.1 // indirect |
| 52 | + github.com/pkg/errors v0.9.1 // indirect |
| 53 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 54 | + github.com/sirupsen/logrus v1.7.0 // indirect |
| 55 | + go.chromium.org/luci v0.0.0-20210204234011-34a994fe5aec // indirect |
| 56 | + go.opencensus.io v0.24.0 // indirect |
| 57 | + golang.org/x/crypto v0.17.0 // indirect |
| 58 | + golang.org/x/net v0.17.0 // indirect |
| 59 | + golang.org/x/oauth2 v0.9.0 // indirect |
| 60 | + golang.org/x/text v0.14.0 // indirect |
| 61 | + golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect |
| 62 | + google.golang.org/appengine v1.6.7 // indirect |
| 63 | + google.golang.org/genproto v0.0.0-20230629202037-9506855d4529 // indirect |
| 64 | + google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529 // indirect |
| 65 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect |
| 66 | + google.golang.org/grpc v1.56.3 // indirect |
| 67 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 68 | +) |
| 69 | + |
34 | 70 | replace github.com/GoogleCloudPlatform/compute-image-import/proto/go => ../proto/go |
35 | 71 |
|
36 | 72 | replace github.com/GoogleCloudPlatform/compute-image-import/common => ../common |
0 commit comments