| // 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/sdks/v2 |
| |
| go 1.19 |
| |
| require ( |
| cloud.google.com/go/bigquery v1.45.0 |
| cloud.google.com/go/bigtable v1.18.1 |
| cloud.google.com/go/datastore v1.10.0 |
| cloud.google.com/go/profiler v0.3.1 |
| cloud.google.com/go/pubsub v1.28.0 |
| cloud.google.com/go/spanner v1.43.0 |
| cloud.google.com/go/storage v1.29.0 |
| github.com/aws/aws-sdk-go-v2 v1.17.5 |
| github.com/aws/aws-sdk-go-v2/config v1.18.15 |
| github.com/aws/aws-sdk-go-v2/credentials v1.13.15 |
| github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.55 |
| github.com/aws/aws-sdk-go-v2/service/s3 v1.30.5 |
| github.com/aws/smithy-go v1.13.5 |
| github.com/docker/go-connections v0.4.0 |
| github.com/dustin/go-humanize v1.0.1 |
| github.com/go-sql-driver/mysql v1.7.0 |
| github.com/golang/protobuf v1.5.2 // TODO(danoliveira): Fully replace this with google.golang.org/protobuf |
| github.com/google/go-cmp v0.5.9 |
| github.com/google/uuid v1.3.0 |
| github.com/johannesboyne/gofakes3 v0.0.0-20221110173912-32fb85c5aed6 |
| github.com/lib/pq v1.10.7 |
| github.com/linkedin/goavro v2.1.0+incompatible |
| github.com/proullon/ramsql v0.0.0-20211120092837-c8d0a408b939 |
| github.com/spf13/cobra v1.6.1 |
| github.com/testcontainers/testcontainers-go v0.18.0 |
| github.com/tetratelabs/wazero v1.0.0-pre.9 |
| github.com/xitongsys/parquet-go v1.6.2 |
| github.com/xitongsys/parquet-go-source v0.0.0-20220315005136-aec0fe3e777c |
| go.mongodb.org/mongo-driver v1.11.2 |
| golang.org/x/exp v0.0.0-20230206171751-46f607a40771 |
| golang.org/x/net v0.7.0 |
| golang.org/x/oauth2 v0.5.0 |
| golang.org/x/sync v0.1.0 |
| golang.org/x/sys v0.5.0 |
| golang.org/x/text v0.7.0 |
| google.golang.org/api v0.110.0 |
| google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc |
| google.golang.org/grpc v1.53.0 |
| google.golang.org/protobuf v1.28.1 |
| gopkg.in/retry.v1 v1.0.3 |
| gopkg.in/yaml.v2 v2.4.0 |
| gopkg.in/yaml.v3 v3.0.1 |
| ) |
| |
| require ( |
| cloud.google.com/go v0.107.0 // indirect |
| cloud.google.com/go/compute v1.18.0 // indirect |
| cloud.google.com/go/compute/metadata v0.2.3 // indirect |
| cloud.google.com/go/iam v0.8.0 // indirect |
| cloud.google.com/go/longrunning v0.3.0 // indirect |
| github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect |
| github.com/Microsoft/go-winio v0.5.2 // indirect |
| github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 // indirect |
| github.com/apache/thrift v0.14.2 // indirect |
| github.com/aws/aws-sdk-go v1.34.0 // indirect |
| github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.10 // indirect |
| github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.23 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.29 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.23 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/ini v1.3.30 // indirect |
| github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.21 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.11 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.24 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.23 // indirect |
| github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.23 // indirect |
| github.com/aws/aws-sdk-go-v2/service/sso v1.12.4 // indirect |
| github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.4 // indirect |
| github.com/aws/aws-sdk-go-v2/service/sts v1.18.5 // indirect |
| github.com/cenkalti/backoff/v4 v4.2.0 // indirect |
| github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect |
| github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect |
| github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b // indirect |
| github.com/containerd/containerd v1.6.18 // indirect |
| github.com/docker/distribution v2.8.1+incompatible // indirect |
| github.com/docker/docker v23.0.0+incompatible // indirect |
| github.com/docker/go-units v0.5.0 // indirect |
| github.com/envoyproxy/go-control-plane v0.10.3 // indirect |
| github.com/envoyproxy/protoc-gen-validate v0.9.1 // indirect |
| github.com/gogo/protobuf v1.3.2 // indirect |
| github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| github.com/golang/snappy v0.0.4 // indirect |
| github.com/google/pprof v0.0.0-20221103000818-d260c55eee4c // indirect |
| github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect |
| github.com/googleapis/gax-go/v2 v2.7.0 // indirect |
| github.com/inconshreveable/mousetrap v1.0.1 // indirect |
| github.com/jmespath/go-jmespath v0.4.0 // indirect |
| github.com/klauspost/compress v1.13.6 // indirect |
| github.com/kr/text v0.2.0 // indirect |
| github.com/magiconair/properties v1.8.7 // indirect |
| github.com/moby/patternmatcher v0.5.0 // indirect |
| github.com/moby/sys/sequential v0.5.0 // indirect |
| github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f // indirect |
| github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect |
| github.com/morikuni/aec v1.0.0 // indirect |
| github.com/opencontainers/go-digest v1.0.0 // indirect |
| github.com/opencontainers/image-spec v1.1.0-rc2 // indirect |
| github.com/opencontainers/runc v1.1.3 // indirect |
| github.com/pierrec/lz4/v4 v4.1.8 // indirect |
| github.com/pkg/errors v0.9.1 // indirect |
| github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect |
| github.com/shabbyrobe/gocovmerge v0.0.0-20180507124511-f6ea450bfb63 // indirect |
| github.com/sirupsen/logrus v1.9.0 // indirect |
| github.com/spf13/pflag v1.0.5 // indirect |
| github.com/xdg-go/pbkdf2 v1.0.0 // indirect |
| github.com/xdg-go/scram v1.1.1 // indirect |
| github.com/xdg-go/stringprep v1.0.3 // indirect |
| github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect |
| go.opencensus.io v0.24.0 // indirect |
| golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect |
| golang.org/x/tools v0.3.0 // indirect |
| golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect |
| google.golang.org/appengine v1.6.7 // indirect |
| gopkg.in/linkedin/goavro.v1 v1.0.5 // indirect |
| ) |