GoScrobble/go.mod

47 lines
1.9 KiB
Modula-2
Raw Normal View History

module gitlab.com/goscrobble/goscrobble-api
2021-03-23 08:43:44 +00:00
go 1.17
2021-03-23 08:43:44 +00:00
require (
2021-03-25 05:15:01 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-redis/redis/v8 v8.8.0
2021-03-23 08:43:44 +00:00
github.com/go-sql-driver/mysql v1.5.0
github.com/golang-migrate/migrate v3.5.4+incompatible
2021-06-22 20:28:41 +00:00
github.com/google/uuid v1.2.0
2021-03-23 08:43:44 +00:00
github.com/gorilla/mux v1.8.0
2021-03-25 05:15:01 +00:00
github.com/joho/godotenv v1.3.0
2021-03-26 08:06:28 +00:00
github.com/rs/cors v1.7.0
github.com/sendgrid/sendgrid-go v3.8.0+incompatible
github.com/zmb3/spotify/v2 v2.0.1
2021-03-24 09:28:05 +00:00
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
2022-01-05 08:52:36 +00:00
golang.org/x/oauth2 v0.0.0-20210810183815-faf39c7919d5
2021-03-26 08:06:28 +00:00
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
)
require (
github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/containerd/containerd v1.4.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sendgrid/rest v2.6.3+incompatible // indirect
github.com/sirupsen/logrus v1.7.0 // indirect
go.opentelemetry.io/otel v0.19.0 // indirect
go.opentelemetry.io/otel/metric v0.19.0 // indirect
go.opentelemetry.io/otel/trace v0.19.0 // indirect
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
google.golang.org/appengine v1.6.7 // indirect
2021-03-24 09:28:05 +00:00
google.golang.org/genproto v0.0.0-20201030142918-24207fddd1c3 // indirect
google.golang.org/grpc v1.33.1 // indirect
google.golang.org/protobuf v1.27.1 // indirect
2021-03-23 08:43:44 +00:00
)