| // Licensed to the Apache Software Foundation (ASF) under one or more |
| // contributor license agreements. See the NOTICE file distributed with |
| // this work for additional information regarding copyright ownership. |
| // The ASF licenses this file to You under the Apache License, Version 2.0 |
| // (the "License"); you may not use this file except in compliance with |
| // the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| // This module contains all Go code used for Beam's SDKs. This file is placed |
| // in this directory in order to cover the go code required for Java and Python |
| // containers, as well as the entire Go SDK. Placing this file in the repository |
| // root is not possible because it causes conflicts with a pre-existing vendor |
| // directory. |
| module github.com/apache/beam/test-infra/mock-apis |
| |
| go 1.25.0 |
| |
| toolchain go1.25.2 |
| |
| require ( |
| cloud.google.com/go/logging v1.13.1 |
| cloud.google.com/go/monitoring v1.24.3 |
| github.com/google/go-cmp v0.7.0 |
| github.com/redis/go-redis/v9 v9.2.1 |
| google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa |
| google.golang.org/grpc v1.83.2 |
| google.golang.org/protobuf v1.36.11 |
| ) |
| |
| require ( |
| cloud.google.com/go v0.123.0 // indirect |
| cloud.google.com/go/auth v0.18.2 // indirect |
| cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect |
| cloud.google.com/go/compute/metadata v0.9.0 // indirect |
| cloud.google.com/go/longrunning v0.8.0 // indirect |
| github.com/cespare/xxhash/v2 v2.3.0 // indirect |
| github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| github.com/felixge/httpsnoop v1.0.4 // indirect |
| github.com/go-logr/logr v1.4.3 // indirect |
| github.com/go-logr/stdr v1.2.2 // indirect |
| github.com/google/s2a-go v0.1.9 // indirect |
| github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect |
| github.com/googleapis/gax-go/v2 v2.17.0 // indirect |
| go.opentelemetry.io/auto/sdk v1.2.1 // indirect |
| go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect |
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect |
| go.opentelemetry.io/otel v1.44.0 // indirect |
| go.opentelemetry.io/otel/metric v1.44.0 // indirect |
| go.opentelemetry.io/otel/trace v1.44.0 // indirect |
| golang.org/x/crypto v0.55.0 // indirect |
| golang.org/x/net v0.58.0 // indirect |
| golang.org/x/oauth2 v0.36.0 // indirect |
| golang.org/x/sync v0.22.0 // indirect |
| golang.org/x/sys v0.47.0 // indirect |
| golang.org/x/text v0.41.0 // indirect |
| golang.org/x/time v0.14.0 // indirect |
| google.golang.org/api v0.264.0 // indirect |
| google.golang.org/genproto v0.0.0-20260128011058-8636f8732409 // indirect |
| google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa // indirect |
| ) |