-
Notifications
You must be signed in to change notification settings - Fork 19
/
go.mod
28 lines (25 loc) · 940 Bytes
/
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
module github.com/datachainlab/cross
go 1.16
require (
github.com/bluele/interchain-simple-packet v0.0.0-20210621072258-be32aaced4b1
github.com/cosmos/cosmos-sdk v0.43.0-beta1
github.com/cosmos/ibc-go v1.0.0-beta1
github.com/gin-gonic/gin v1.7.0 // indirect
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/rakyll/statik v0.1.7
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.10
github.com/tendermint/tm-db v0.6.4
google.golang.org/genproto v0.0.0-20210114201628-6edceaf6022f
google.golang.org/grpc v1.37.0
)
replace (
github.com/cosmos/ibc-go => github.com/datachainlab/ibc-go v0.0.0-20210706141244-07dc9d32d9e7
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.2-alpha.regen.4
)