forked from ubccr/mokey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
47 lines (45 loc) · 1.98 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module github.com/ubccr/mokey
require (
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef
github.com/coreos/go-oidc v2.1.0+incompatible
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/dchest/captcha v0.0.0-20170622155422-6a29415a8364
github.com/go-ini/ini v1.48.0 // indirect
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/protobuf v1.3.2 // indirect
github.com/gomodule/redigo v2.0.0+incompatible
github.com/gopherjs/gopherjs v0.0.0-20180825215210-0210a2f0f73c // indirect
github.com/gorilla/mux v1.7.3
github.com/gorilla/sessions v1.2.0
github.com/hashicorp/go-uuid v1.0.1 // indirect
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/labstack/echo-contrib v0.6.0
github.com/labstack/echo/v4 v4.1.17
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/ory/hydra-client-go v1.9.2
github.com/pkg/errors v0.9.1
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
github.com/pquerna/otp v1.2.0
github.com/sirupsen/logrus v1.4.2
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf // indirect
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.4.0
github.com/ubccr/goipa v0.0.4
github.com/urfave/cli v1.22.1
github.com/urfave/negroni v1.0.0
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
golang.org/x/sys v0.0.0-20201029080932-201ba4db2418 // indirect
google.golang.org/appengine v1.6.4 // indirect
gopkg.in/ini.v1 v1.38.2 // indirect
gopkg.in/jcmturner/goidentity.v3 v3.0.0 // indirect
gopkg.in/jcmturner/gokrb5.v6 v6.1.1 // indirect
gopkg.in/square/go-jose.v2 v2.3.1 // indirect
)
go 1.13