forked from pathwar/pathwar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
75 lines (72 loc) · 3.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module pathwar.land/v2
require (
cloud.google.com/go v0.37.4 // indirect
github.com/Bearer/bearer-go v1.2.1
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/brianvoe/gofakeit v3.18.0+incompatible
github.com/bwmarrin/snowflake v0.3.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.4.0 // indirect
github.com/dustin/go-humanize v1.0.0
github.com/go-chi/chi v4.1.1+incompatible
github.com/go-sql-driver/mysql v1.5.0
github.com/gobuffalo/packr/v2 v2.8.0
github.com/gogo/gateway v1.1.0
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.3.2
github.com/google/go-cmp v0.4.0 // indirect
github.com/google/go-querystring v1.0.0
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.14.5
github.com/jinzhu/gorm v1.9.12
github.com/karrick/godirwalk v1.15.6 // indirect
github.com/keycloak/kcinit v0.0.0-20181010192927-f85c3c5390ea
github.com/martinlindhe/base36 v1.0.0
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/moby/moby v1.13.1
github.com/oklog/run v1.1.1-0.20200508094559-c7096881717e
github.com/olekukonko/tablewriter v0.0.4
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opentracing/opentracing-go v1.1.0
github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5
github.com/openzipkin/zipkin-go v0.2.2
github.com/peterbourgon/ff v1.7.0
github.com/pkg/errors v0.9.1
github.com/rogpeppe/go-internal v1.6.0 // indirect
github.com/rs/cors v1.7.0
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/soheilhy/cmux v0.1.4
github.com/stretchr/testify v1.5.1
github.com/treastech/logger v0.0.0-20180705232552-e381e9ecf2e3
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect
golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c
google.golang.org/grpc v1.28.0-pre
gopkg.in/gormigrate.v1 v1.6.0
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
moul.io/godev v1.6.0
moul.io/roundtripper v1.0.0
moul.io/srand v1.4.0
moul.io/zapgorm v1.0.0
)
replace (
//github.com/Bearer/bearer-go => ../github.com/Bearer/bearer-go
github.com/golang/lint => golang.org/x/lint v0.0.0-20190409202823-959b441ac422
github.com/golang/protobuf => github.com/golang/protobuf v1.3.2
gopkg.in/jcmturner/rpc.v1 => gopkg.in/jcmturner/rpc.v1 v1.1.0
//moul.io/godev => ../moul.io/godev
sourcegraph.com/sourcegraph/go-diff => github.com/sourcegraph/go-diff v0.5.1
)
go 1.13