-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathgo.mod
72 lines (69 loc) · 3.5 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
module github.com/stack-labs/starter-kit
go 1.14
replace (
github.com/coreos/bbolt => go.etcd.io/bbolt v1.3.4
github.com/stack-labs/stack-rpc v1.0.1-rc1 => ../stack-rpc
google.golang.org/grpc => google.golang.org/grpc v1.26.0
github.com/stack-labs/stack-rpc-plugins/service/stackway v0.0.0 => github.com/hb-chen/stack-rpc-plugins/service/stackway v0.0.0-20210131160353-ba214d03398b
)
require (
github.com/ajg/form v1.5.1 // indirect
github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75 // indirect
github.com/astaxie/beego v1.12.0
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/casbin/casbin/v2 v2.1.2
github.com/cloudflare/cloudflare-go v0.10.9 // indirect
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/envoyproxy/protoc-gen-validate v0.1.0
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
github.com/forestgiant/sliceutil v0.0.0-20160425183142-94783f95db6c // indirect
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 // indirect
github.com/gin-gonic/gin v1.3.0
github.com/go-acme/lego/v3 v3.4.0 // indirect
github.com/go-sql-driver/mysql v1.4.1
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.1.1
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
github.com/gorilla/mux v1.7.4 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect
github.com/hb-go/pkg v0.0.2
github.com/imkira/go-interpol v1.1.0 // indirect
github.com/jinzhu/gorm v1.9.11
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/kataras/iris/v12 v12.0.1
github.com/labstack/echo/v4 v4.1.11
github.com/marten-seemann/chacha20 v0.2.0 // indirect
github.com/micro/mdns v0.3.0 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/opentracing/opentracing-go v1.1.0
github.com/prometheus/client_golang v1.2.1
github.com/rakyll/statik v0.1.6
github.com/rs/cors v1.7.0
github.com/sarulabs/di v2.0.0+incompatible
github.com/shiena/ansicolor v0.0.0-20151119151921-a422bbe96644 // indirect
github.com/smartystreets/assertions v1.0.1 // indirect
github.com/smartystreets/goconvey v0.0.0-20190710185942-9d28bd7c0945 // indirect
github.com/soheilhy/cmux v0.1.4 // indirect
github.com/stack-labs/stack-rpc v1.0.1-rc1.0.20210131055900-7ff3c657756c
github.com/stack-labs/stack-rpc-plugins/service/stackway v0.0.0
github.com/stretchr/testify v1.4.0
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
github.com/uber/jaeger-client-go v2.21.1+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible
github.com/valyala/fasthttp v1.6.0 // indirect
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
github.com/yudai/gojsondiff v1.0.0 // indirect
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
github.com/yudai/pp v2.0.1+incompatible // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/telegram-bot-api.v4 v4.6.4 // indirect
xorm.io/xorm v0.8.0
)