github.com/apache/beam/sdks/v2@v2.48.2/go.mod (about) 1 // Licensed to the Apache Software Foundation (ASF) under one or more 2 // contributor license agreements. See the NOTICE file distributed with 3 // this work for additional information regarding copyright ownership. 4 // The ASF licenses this file to You under the Apache License, Version 2.0 5 // (the "License"); you may not use this file except in compliance with 6 // the License. You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 16 // This module contains all Go code used for Beam's SDKs. This file is placed 17 // in this directory in order to cover the go code required for Java and Python 18 // containers, as well as the entire Go SDK. Placing this file in the repository 19 // root is not possible because it causes conflicts with a pre-existing vendor 20 // directory. 21 module github.com/apache/beam/sdks/v2 22 23 go 1.19 24 25 require ( 26 cloud.google.com/go/bigquery v1.51.1 27 cloud.google.com/go/bigtable v1.18.1 28 cloud.google.com/go/datastore v1.11.0 29 cloud.google.com/go/profiler v0.3.1 30 cloud.google.com/go/pubsub v1.30.1 31 cloud.google.com/go/spanner v1.46.0 32 cloud.google.com/go/storage v1.30.1 33 github.com/aws/aws-sdk-go-v2 v1.18.0 34 github.com/aws/aws-sdk-go-v2/config v1.18.24 35 github.com/aws/aws-sdk-go-v2/credentials v1.13.24 36 github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.66 37 github.com/aws/aws-sdk-go-v2/service/s3 v1.33.1 38 github.com/aws/smithy-go v1.13.5 39 github.com/docker/go-connections v0.4.0 40 github.com/dustin/go-humanize v1.0.1 41 github.com/go-sql-driver/mysql v1.7.1 42 github.com/golang/protobuf v1.5.3 // TODO(danoliveira): Fully replace this with google.golang.org/protobuf 43 github.com/google/go-cmp v0.5.9 44 github.com/google/uuid v1.3.0 45 github.com/johannesboyne/gofakes3 v0.0.0-20221110173912-32fb85c5aed6 46 github.com/lib/pq v1.10.9 47 github.com/linkedin/goavro v2.1.0+incompatible 48 github.com/proullon/ramsql v0.0.0-20211120092837-c8d0a408b939 49 github.com/spf13/cobra v1.7.0 50 github.com/testcontainers/testcontainers-go v0.20.1 51 github.com/tetratelabs/wazero v1.1.0 52 github.com/xitongsys/parquet-go v1.6.2 53 github.com/xitongsys/parquet-go-source v0.0.0-20220315005136-aec0fe3e777c 54 go.mongodb.org/mongo-driver v1.11.6 55 golang.org/x/net v0.10.0 56 golang.org/x/oauth2 v0.8.0 57 golang.org/x/sync v0.2.0 58 golang.org/x/sys v0.8.0 59 golang.org/x/text v0.9.0 60 google.golang.org/api v0.122.0 61 google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 62 google.golang.org/grpc v1.55.0 63 google.golang.org/protobuf v1.30.0 64 gopkg.in/retry.v1 v1.0.3 65 gopkg.in/yaml.v2 v2.4.0 66 gopkg.in/yaml.v3 v3.0.1 67 ) 68 69 require ( 70 github.com/fsouza/fake-gcs-server v1.45.1 71 golang.org/x/exp v0.0.0-20230321023759-10a507213a29 72 ) 73 74 require ( 75 cloud.google.com/go v0.110.0 // indirect 76 cloud.google.com/go/compute v1.19.0 // indirect 77 cloud.google.com/go/compute/metadata v0.2.3 // indirect 78 cloud.google.com/go/iam v1.0.1 // indirect 79 cloud.google.com/go/longrunning v0.4.1 // indirect 80 github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect 81 github.com/Microsoft/go-winio v0.5.2 // indirect 82 github.com/andybalholm/brotli v1.0.4 // indirect 83 github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 // indirect 84 github.com/apache/arrow/go/v12 v12.0.0 // indirect 85 github.com/apache/thrift v0.16.0 // indirect 86 github.com/aws/aws-sdk-go v1.34.0 // indirect 87 github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect 88 github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3 // indirect 89 github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33 // indirect 90 github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27 // indirect 91 github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34 // indirect 92 github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.25 // indirect 93 github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 // indirect 94 github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.28 // indirect 95 github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27 // indirect 96 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.14.2 // indirect 97 github.com/aws/aws-sdk-go-v2/service/sso v1.12.10 // indirect 98 github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10 // indirect 99 github.com/aws/aws-sdk-go-v2/service/sts v1.19.0 // indirect 100 github.com/cenkalti/backoff/v4 v4.2.0 // indirect 101 github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect 102 github.com/cespare/xxhash/v2 v2.2.0 // indirect 103 github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect 104 github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195 // indirect 105 github.com/containerd/containerd v1.6.19 // indirect 106 github.com/cpuguy83/dockercfg v0.3.1 // indirect 107 github.com/docker/distribution v2.8.2+incompatible // indirect 108 github.com/docker/docker v23.0.5+incompatible // indirect 109 github.com/docker/go-units v0.5.0 // indirect 110 github.com/envoyproxy/go-control-plane v0.11.0 // indirect 111 github.com/envoyproxy/protoc-gen-validate v0.10.0 // indirect 112 github.com/felixge/httpsnoop v1.0.2 // indirect 113 github.com/goccy/go-json v0.9.11 // indirect 114 github.com/gogo/protobuf v1.3.2 // indirect 115 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect 116 github.com/golang/snappy v0.0.4 // indirect 117 github.com/google/flatbuffers v2.0.8+incompatible // indirect 118 github.com/google/pprof v0.0.0-20221103000818-d260c55eee4c // indirect 119 github.com/google/renameio/v2 v2.0.0 // indirect 120 github.com/google/s2a-go v0.1.3 // indirect 121 github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect 122 github.com/googleapis/gax-go/v2 v2.8.0 // indirect 123 github.com/gorilla/handlers v1.5.1 // indirect 124 github.com/gorilla/mux v1.8.0 // indirect 125 github.com/imdario/mergo v0.3.12 // indirect 126 github.com/inconshreveable/mousetrap v1.1.0 // indirect 127 github.com/jmespath/go-jmespath v0.4.0 // indirect 128 github.com/klauspost/asmfmt v1.3.2 // indirect 129 github.com/klauspost/compress v1.16.0 // indirect 130 github.com/klauspost/cpuid/v2 v2.2.4 // indirect 131 github.com/kr/text v0.2.0 // indirect 132 github.com/magiconair/properties v1.8.7 // indirect 133 github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect 134 github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect 135 github.com/moby/patternmatcher v0.5.0 // indirect 136 github.com/moby/sys/sequential v0.5.0 // indirect 137 github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f // indirect 138 github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect 139 github.com/morikuni/aec v1.0.0 // indirect 140 github.com/opencontainers/go-digest v1.0.0 // indirect 141 github.com/opencontainers/image-spec v1.1.0-rc2 // indirect 142 github.com/opencontainers/runc v1.1.5 // indirect 143 github.com/pierrec/lz4/v4 v4.1.15 // indirect 144 github.com/pkg/errors v0.9.1 // indirect 145 github.com/pkg/xattr v0.4.9 // indirect 146 github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect 147 github.com/shabbyrobe/gocovmerge v0.0.0-20180507124511-f6ea450bfb63 // indirect 148 github.com/sirupsen/logrus v1.9.0 // indirect 149 github.com/spf13/pflag v1.0.5 // indirect 150 github.com/xdg-go/pbkdf2 v1.0.0 // indirect 151 github.com/xdg-go/scram v1.1.1 // indirect 152 github.com/xdg-go/stringprep v1.0.3 // indirect 153 github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect 154 github.com/zeebo/xxh3 v1.0.2 // indirect 155 go.opencensus.io v0.24.0 // indirect 156 golang.org/x/crypto v0.7.0 // indirect 157 golang.org/x/mod v0.9.0 // indirect 158 golang.org/x/tools v0.7.0 // indirect 159 golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect 160 google.golang.org/appengine v1.6.7 // indirect 161 gopkg.in/linkedin/goavro.v1 v1.0.5 // indirect 162 )