forked from gobitfly/eth2-beaconchain-explorer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
33 lines (31 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
module eth2-exporter
go 1.13
require (
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.2
github.com/gorilla/mux v1.7.3
github.com/grpc-ecosystem/grpc-gateway v1.12.1 // indirect
github.com/hashicorp/golang-lru v0.5.3
github.com/jmoiron/sqlx v1.2.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/lib/pq v1.2.0
github.com/meatballhat/negroni-logrus v0.0.0-20170801195057-31067281800f
github.com/phyber/negroni-gzip v0.0.0-20180113114010-ef6356a5d029
github.com/prysmaticlabs/ethereumapis v0.0.0-20191204052238-ce7288779735
github.com/prysmaticlabs/go-bitfield v0.0.0-20191017011753-53b773adde52
github.com/prysmaticlabs/prysm v0.2.7
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.4.0 // indirect
github.com/urfave/negroni v1.0.0
github.com/zesik/proxyaddr v0.0.0-20161218060608-ec32c535184d
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
golang.org/x/net v0.0.0-20191204025024-5ee1b9f4859a // indirect
golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect
google.golang.org/genproto v0.0.0-20191203220235-3fa9dbf08042 // indirect
google.golang.org/grpc v1.25.1
gopkg.in/yaml.v2 v2.2.7
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
)