-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
254 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,57 @@ | ||
module github.com/foomo/redirects | ||
|
||
go 1.20 | ||
go 1.22 | ||
|
||
toolchain go1.22.6 | ||
|
||
require ( | ||
github.com/foomo/contentserver v1.10.2 | ||
github.com/foomo/gotsrpc/v2 v2.7.3 | ||
github.com/foomo/gotsrpc/v2 v2.8.1 | ||
github.com/foomo/keel v0.18.1 | ||
github.com/google/uuid v1.6.0 | ||
github.com/nats-io/nats.go v1.36.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/stretchr/testify v1.8.4 | ||
go.uber.org/zap v1.26.0 | ||
github.com/stretchr/testify v1.9.0 | ||
go.mongodb.org/mongo-driver v1.16.1 | ||
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.53.0 | ||
go.opentelemetry.io/otel/trace v1.28.0 | ||
go.uber.org/zap v1.27.0 | ||
) | ||
|
||
require ( | ||
github.com/avast/retry-go v3.0.0+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/felixge/httpsnoop v1.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fbiville/markdown-table-formatter v0.3.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/iancoleman/strcase v0.2.0 // indirect | ||
github.com/minio/highwayhash v1.0.2 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sony/gobreaker v0.5.0 // indirect | ||
github.com/tinylib/msgp v1.1.8 // indirect | ||
github.com/ugorji/go/codec v1.2.11 // indirect | ||
go.opentelemetry.io/otel/metric v1.21.0 // indirect | ||
golang.org/x/mod v0.9.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
golang.org/x/tools v0.7.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/klauspost/compress v1.14.4 // indirect | ||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | ||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/sony/gobreaker v1.0.0 // indirect | ||
github.com/tinylib/msgp v1.2.0 // indirect | ||
github.com/ugorji/go/codec v1.2.12 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
go.mongodb.org/mongo-driver v1.13.1 | ||
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0 | ||
go.opentelemetry.io/otel v1.7.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.7.0 | ||
golang.org/x/crypto v0.12.0 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/foomo/keel v0.16.1 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/tools v0.22.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.