| // 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. |
| |
| module beam.apache.org/playground/backend |
| |
| go 1.20 |
| |
| require ( |
| cloud.google.com/go/datastore v1.10.0 |
| cloud.google.com/go/logging v1.7.0 |
| github.com/GoogleCloudPlatform/functions-framework-go v1.6.1 |
| github.com/confluentinc/confluent-kafka-go/v2 v2.1.1 |
| github.com/go-redis/redis/v8 v8.11.5 |
| github.com/go-redis/redismock/v8 v8.0.6 |
| github.com/google/go-cmp v0.5.9 |
| github.com/google/uuid v1.3.0 |
| github.com/improbable-eng/grpc-web v0.15.0 |
| github.com/linkedin/goavro/v2 v2.11.1 |
| github.com/procyon-projects/chrono v1.1.2 |
| github.com/rs/cors v1.8.2 |
| github.com/spf13/viper v1.14.0 |
| github.com/stretchr/testify v1.8.2 |
| go.uber.org/goleak v1.2.0 |
| google.golang.org/grpc v1.54.0 |
| google.golang.org/protobuf v1.30.0 |
| gopkg.in/yaml.v3 v3.0.1 |
| ) |
| |
| require ( |
| cloud.google.com/go v0.110.0 // indirect |
| cloud.google.com/go/compute v1.19.0 // indirect |
| cloud.google.com/go/compute/metadata v0.2.3 // indirect |
| cloud.google.com/go/functions v1.12.0 // indirect |
| cloud.google.com/go/longrunning v0.4.1 // indirect |
| github.com/cenkalti/backoff/v4 v4.1.3 // indirect |
| github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| github.com/cloudevents/sdk-go/v2 v2.6.1 // indirect |
| github.com/davecgh/go-spew v1.1.1 // indirect |
| github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect |
| github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| github.com/fsnotify/fsnotify v1.6.0 // indirect |
| github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| github.com/golang/protobuf v1.5.3 // indirect |
| github.com/golang/snappy v0.0.4 // indirect |
| github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect |
| github.com/googleapis/gax-go/v2 v2.7.1 // indirect |
| github.com/hashicorp/hcl v1.0.0 // indirect |
| github.com/json-iterator/go v1.1.12 // indirect |
| github.com/klauspost/compress v1.15.9 // indirect |
| github.com/magiconair/properties v1.8.6 // indirect |
| github.com/mitchellh/mapstructure v1.5.0 // indirect |
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| github.com/modern-go/reflect2 v1.0.2 // indirect |
| github.com/pelletier/go-toml v1.9.5 // indirect |
| github.com/pelletier/go-toml/v2 v2.0.5 // indirect |
| github.com/pmezard/go-difflib v1.0.0 // indirect |
| github.com/spf13/afero v1.9.2 // indirect |
| github.com/spf13/cast v1.5.0 // indirect |
| github.com/spf13/jwalterweatherman v1.1.0 // indirect |
| github.com/spf13/pflag v1.0.5 // indirect |
| github.com/subosito/gotenv v1.4.1 // indirect |
| go.opencensus.io v0.24.0 // indirect |
| go.uber.org/atomic v1.9.0 // indirect |
| go.uber.org/multierr v1.8.0 // indirect |
| go.uber.org/zap v1.21.0 // indirect |
| golang.org/x/net v0.8.0 // indirect |
| golang.org/x/oauth2 v0.6.0 // indirect |
| golang.org/x/sync v0.1.0 // indirect |
| golang.org/x/sys v0.6.0 // indirect |
| golang.org/x/text v0.8.0 // indirect |
| golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect |
| google.golang.org/api v0.114.0 // indirect |
| google.golang.org/appengine v1.6.7 // indirect |
| google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633 // indirect |
| gopkg.in/ini.v1 v1.67.0 // indirect |
| gopkg.in/yaml.v2 v2.4.0 // indirect |
| nhooyr.io/websocket v1.8.6 // indirect |
| ) |