-
Notifications
You must be signed in to change notification settings - Fork 26
/
go.mod
35 lines (33 loc) · 1.4 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
module github.com/Alethio/memento
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/alethio/ethmock v0.0.0-20190820104914-7b8327fb645e // indirect
github.com/alethio/web3-go v0.0.6
github.com/davecgh/go-spew v1.1.1
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484 // indirect
github.com/gin-contrib/cors v1.3.0
github.com/gin-contrib/static v0.0.0-20190913125243-df30d4057ba1
github.com/gin-gonic/gin v1.4.0
github.com/go-redis/redis v6.15.2+incompatible
github.com/golang/protobuf v1.3.2 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kwix/logrus-module-formatter v0.0.0-20190702125859-070a70371a97
github.com/lib/pq v1.2.0
github.com/moul/http2curl v1.0.0 // indirect
github.com/onsi/ginkgo v1.9.0 // indirect
github.com/onsi/gomega v1.6.0 // indirect
github.com/parnurzeal/gorequest v0.2.15
github.com/pkg/errors v0.8.1
github.com/pressly/goose v2.6.0+incompatible
github.com/sirupsen/logrus v1.4.2
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.3.2
github.com/stretchr/testify v1.4.0 // indirect
github.com/ugorji/go v1.1.7 // indirect
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/yaml.v2 v2.2.4 // indirect
)
go 1.13