-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
61 lines (59 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module go-webapp-example
go 1.12
require (
github.com/99designs/gqlgen v0.11.3
github.com/DATA-DOG/go-sqlmock v1.4.1
github.com/DATA-DOG/go-txdb v0.1.3
github.com/Masterminds/squirrel v1.2.0
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/OFFLINE-GmbH/casbin-sqlx-adapter v0.2.1
github.com/alexedwards/scs/mysqlstore v0.0.0-20191202162535-94b5622279d9
github.com/alexedwards/scs/v2 v2.2.0
github.com/casbin/casbin v1.9.1
github.com/cenkalti/backoff/v3 v3.2.2
github.com/containerd/containerd v1.2.11 // indirect
github.com/dgryski/trifles v0.0.0-20191129005055-5a6159895336 // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-chi/chi v4.0.3+incompatible
github.com/go-chi/cors v1.0.0
github.com/go-redis/redis v6.14.2+incompatible // indirect
github.com/go-sql-driver/mysql v1.5.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang-migrate/migrate/v4 v4.8.0
github.com/golang/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.4.0 // indirect
github.com/gorilla/mux v1.7.4 // indirect
github.com/gorilla/websocket v1.4.1
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/kr/text v0.2.0 // indirect
github.com/magefile/mage v1.9.0
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/oleiade/reflections v1.0.0
github.com/onsi/ginkgo v1.10.3 // indirect
github.com/onsi/gomega v1.7.1 // indirect
github.com/ory/dockertest v3.3.5+incompatible // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/r3labs/diff v1.0.1
github.com/romanyx/polluter v1.2.2
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.2
github.com/stretchr/testify v1.5.1
github.com/vektah/gqlparser/v2 v2.0.1
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
google.golang.org/genproto v0.0.0-20190508193815-b515fa19cec8 // indirect
google.golang.org/grpc v1.21.4 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/guregu/null.v3 v3.4.0
gopkg.in/yaml.v2 v2.2.8 // indirect
gotest.tools v2.2.0+incompatible
)