| // 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.8.1 |
| cloud.google.com/go/monitoring v1.16.0 |
| github.com/google/go-cmp v0.5.9 |
| github.com/redis/go-redis/v9 v9.2.1 |
| google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d |
| google.golang.org/grpc v1.58.3 |
| google.golang.org/protobuf v1.33.0 |
| ) |
| |
| require ( |
| cloud.google.com/go v0.110.6 // indirect |
| cloud.google.com/go/compute/metadata v0.3.0 // indirect |
| cloud.google.com/go/longrunning v0.5.1 // indirect |
| github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // 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.4 // indirect |
| github.com/googleapis/enterprise-certificate-proxy v0.2.4 // indirect |
| github.com/googleapis/gax-go/v2 v2.12.0 // indirect |
| go.opencensus.io v0.24.0 // indirect |
| golang.org/x/crypto v0.45.0 // indirect |
| golang.org/x/net v0.47.0 // indirect |
| golang.org/x/oauth2 v0.27.0 // indirect |
| golang.org/x/sync v0.18.0 // indirect |
| golang.org/x/sys v0.38.0 // indirect |
| golang.org/x/text v0.31.0 // indirect |
| google.golang.org/api v0.128.0 // indirect |
| google.golang.org/appengine v1.6.7 // indirect |
| google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect |
| google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect |
| ) |