mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-21 08:01:56 +00:00
57 lines
2.3 KiB
Modula-2
57 lines
2.3 KiB
Modula-2
module gitlab.com/idanoo/goscrobble
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/disintegration/imaging v1.6.2
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/go-sql-driver/mysql v1.6.0
|
|
github.com/golang-migrate/migrate v3.5.4+incompatible
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/rs/cors v1.8.2
|
|
github.com/sendgrid/sendgrid-go v3.11.1+incompatible
|
|
github.com/zmb3/spotify/v2 v2.0.1
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306
|
|
)
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // 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/go-redis/redis/v8 v8.8.0
|
|
github.com/gogo/protobuf v1.3.1 // indirect
|
|
github.com/golang-migrate/migrate v3.5.4+incompatible
|
|
github.com/golang/protobuf v1.4.3 // indirect
|
|
github.com/google/uuid v1.2.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/joho/godotenv v1.3.0
|
|
github.com/lib/pq v1.10.4
|
|
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.9+incompatible // indirect
|
|
github.com/sirupsen/logrus v1.7.0 // indirect
|
|
go.opentelemetry.io/otel v1.6.3 // indirect
|
|
go.opentelemetry.io/otel/metric v0.29.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.6.3 // indirect
|
|
golang.org/x/image v0.0.0-20220413100746-70e8d0d3baa9 // indirect
|
|
golang.org/x/net v0.0.0-20220421235706-1d1ef9303861 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20201030142918-24207fddd1c3 // indirect
|
|
google.golang.org/grpc v1.33.1 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
)
|