Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-21 23:04:54 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-25 13:43:55 +0300
commitb5d5457b1ab44c6fbadcff68b302f3104f629225 (patch)
treeab8f8129e3d88a22a82547af9a1cb5dd302e1387 /go.mod
parentbd0314a207e2e20a9fef5a9f4392e1eee2ca19f3 (diff)
Drop go 1.16 support
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod38
1 files changed, 35 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index da84c5a7..1fb8cbd1 100644
--- a/go.mod
+++ b/go.mod
@@ -4,12 +4,11 @@ module gitlab.com/gitlab-org/gitlab-pages
// - update the minimum version used in ci
// - make sure the internal/vfs/serving package is synced
// with upstream
-go 1.16
+go 1.17
require (
github.com/golang-jwt/jwt/v4 v4.1.0
github.com/golang/mock v1.6.0
- github.com/google/go-cmp v0.5.7 // indirect
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.8.0
github.com/gorilla/securecookie v1.1.1
@@ -23,7 +22,6 @@ require (
github.com/rs/cors v1.7.0
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0
- github.com/tj/assert v0.0.3 // indirect
github.com/tj/go-redirects v0.0.0-20180508180010-5c02ead0bbc5
gitlab.com/feistel/go-contentencoding v1.0.0
gitlab.com/gitlab-org/go-mimedb v1.45.0
@@ -34,3 +32,37 @@ require (
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
)
+
+require (
+ cloud.google.com/go v0.92.2 // indirect
+ cloud.google.com/go/profiler v0.1.0 // indirect
+ github.com/beorn7/perks v1.0.1 // indirect
+ github.com/cespare/xxhash/v2 v2.1.2 // indirect
+ github.com/client9/reopen v1.0.0 // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/getsentry/sentry-go v0.11.0 // indirect
+ github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
+ github.com/golang/protobuf v1.5.2 // indirect
+ github.com/google/go-cmp v0.5.7 // indirect
+ github.com/google/pprof v0.0.0-20210804190019-f964ff605595 // indirect
+ github.com/googleapis/gax-go/v2 v2.0.5 // indirect
+ github.com/hashicorp/errwrap v1.0.0 // indirect
+ github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
+ github.com/oklog/ulid/v2 v2.0.2 // indirect
+ github.com/pkg/errors v0.9.1 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/prometheus/client_model v0.2.0 // indirect
+ github.com/prometheus/common v0.32.1 // indirect
+ github.com/prometheus/procfs v0.7.3 // indirect
+ github.com/sebest/xff v0.0.0-20210106013422-671bd2870b3a // indirect
+ github.com/tj/assert v0.0.3 // indirect
+ go.opencensus.io v0.23.0 // indirect
+ golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a // indirect
+ golang.org/x/text v0.3.6 // indirect
+ google.golang.org/api v0.54.0 // indirect
+ google.golang.org/appengine v1.6.7 // indirect
+ google.golang.org/genproto v0.0.0-20210813162853-db860fec028c // indirect
+ google.golang.org/grpc v1.40.0 // indirect
+ google.golang.org/protobuf v1.27.1 // indirect
+ gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
+)