forked from baking-bad/bcdhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
59 lines (57 loc) · 2.34 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
module github.com/baking-bad/bcdhub
go 1.15
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/aws/aws-sdk-go v1.36.1
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b // indirect
github.com/btcsuite/btcutil v1.0.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/ebellocchia/go-base58 v0.1.0
github.com/elastic/go-elasticsearch/v8 v8.0.0-20191218082911-5398a82b748f
github.com/fatih/color v1.10.0
github.com/getsentry/sentry-go v0.5.1
github.com/gin-contrib/cache v1.1.0
github.com/gin-contrib/cors v1.3.0
github.com/gin-gonic/gin v1.7.4
github.com/go-git/go-git/v5 v5.4.2
github.com/go-openapi/jsonreference v0.19.6 // indirect
github.com/go-openapi/spec v0.20.3 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-pg/pg/v10 v10.10.6
github.com/go-playground/validator/v10 v10.9.0
github.com/golang/mock v1.5.0
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/uuid v1.1.2
github.com/iancoleman/strcase v0.1.3
github.com/ipfs/go-cid v0.1.0
github.com/jessevdk/go-flags v1.5.0
github.com/json-iterator/go v1.1.10
github.com/karlseguin/ccache v2.0.3+incompatible
github.com/karlseguin/expect v1.0.2-0.20190806010014-778a5f0c6003 // indirect
github.com/lib/pq v1.9.0
github.com/machinebox/graphql v0.2.2
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matryer/is v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/microcosm-cc/bluemonday v1.0.16
github.com/onsi/gomega v1.10.4 // indirect
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.15.0
github.com/schollz/progressbar/v3 v3.1.1
github.com/sergi/go-diff v1.1.0
github.com/shopspring/decimal v1.2.0
github.com/stretchr/testify v1.7.0
github.com/swaggo/swag v1.7.0
github.com/tidwall/gjson v1.9.3
github.com/ugorji/go v1.2.6 // indirect
github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0 // indirect
github.com/yhirose/go-peg v0.0.0-20190710015414-7eb2cf046928
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/net v0.0.0-20210928044308-7d9f5e0b762b // indirect
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.6 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v2 v2.4.0
)