forked from chainspace/blockmania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
54 lines (51 loc) · 2.32 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
module github.com/chainspace/blockmania
go 1.17
require (
github.com/dgraph-io/badger v1.5.4
github.com/gin-contrib/cors v0.0.0-20170318125340-cf4846e6a636
github.com/gin-gonic/gin v1.3.0
github.com/gofrs/flock v0.7.0
github.com/gogo/protobuf v1.2.0
github.com/golang/protobuf v1.2.0
github.com/gorilla/websocket v1.4.0
github.com/grandcat/zeroconf v0.0.0-20181220215047-ce4c7efa4b6b
github.com/onsi/ginkgo v1.7.0
github.com/onsi/gomega v1.4.3
github.com/stretchr/testify v1.3.0
github.com/swaggo/gin-swagger v1.0.0
github.com/swaggo/swag v1.4.0
golang.org/x/crypto v0.0.0-20190103213133-ff983b9c42bc
gopkg.in/yaml.v2 v2.2.2
)
require (
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7 // indirect
github.com/PuerkitoBio/purell v1.1.0 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/cenkalti/backoff v2.1.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-farm v0.0.0-20190104051053-3adb47b1fb0f // indirect
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7 // indirect
github.com/go-openapi/jsonpointer v0.18.0 // indirect
github.com/go-openapi/jsonreference v0.18.0 // indirect
github.com/go-openapi/spec v0.18.0 // indirect
github.com/go-openapi/swag v0.18.0 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/json-iterator/go v1.1.5 // indirect
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/miekg/dns v1.1.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
github.com/ugorji/go v1.1.1 // indirect
golang.org/x/net v0.0.0-20190107210223-45ffb0cd1ba0 // indirect
golang.org/x/sys v0.0.0-20190108104531-7fbe1cd0fcc2 // indirect
golang.org/x/text v0.3.0 // indirect
golang.org/x/tools v0.0.0-20190107155254-e063def13b29 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)