-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recreating go.mod and go.sum for common
PiperOrigin-RevId: 688101746
- Loading branch information
1 parent
96ce904
commit 858ccc3
Showing
2 changed files
with
273 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
module github.com/GoogleCloudPlatform/workloadagentplatform/integration/common | ||
|
||
go 1.23 | ||
|
||
replace github.com/GoogleCloudPlatform/workloadagentplatform/integration/common/protos v0.0.0 => ./protos | ||
|
||
replace github.com/GoogleCloudPlatform/workloadagentplatform/integration/common/onetime v0.0.0 => ./onetime | ||
|
||
replace github.com/GoogleCloudPlatform/workloadagentplatform/integration/common/usagemetrics v0.0.0 => ./usagemetrics | ||
|
||
require ( | ||
github.com/GoogleCloudPlatform/sapagent v1.5.2-0.20241015171556-8aee46464472 | ||
github.com/google/subcommands v1.2.0 | ||
github.com/jonboulle/clockwork v0.4.1-0.20230717050334-b1209715e43c | ||
go.uber.org/zap v1.24.0 | ||
google.golang.org/protobuf v1.34.3-0.20240708074925-b46f280f9725 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.112.0 // indirect | ||
cloud.google.com/go/compute v1.23.4 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/logging v1.9.0 // indirect | ||
cloud.google.com/go/longrunning v0.5.5 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.2 // indirect | ||
github.com/natefinch/lumberjack v0.0.0-20230119042236-215739b3bcdc // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.17.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
google.golang.org/api v0.168.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240205150955-31a09d347014 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 // indirect | ||
google.golang.org/grpc v1.62.0 // indirect | ||
) |
Oops, something went wrong.