-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
27 lines (21 loc) · 777 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
module github.com/regel/cardano-p2p
go 1.15
replace github.com/regel/cardano-p2p/server => ./server
replace github.com/regel/cardano-p2p/pkg => ./pkg
replace github.com/regel/cardano-p2p/pkg/probe => ./pkg/probe
replace github.com/regel/cardano-p2p/log => ./log
require (
github.com/MakeNowJust/heredoc v1.0.0
github.com/dchest/blake2b v1.0.0
github.com/go-redis/redis v6.15.9+incompatible // indirect
github.com/go-redis/redis/v8 v8.11.4
github.com/gorilla/websocket v1.4.2
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.8.1
github.com/stretchr/testify v1.7.0
go.uber.org/zap v1.17.0
gopkg.in/validator.v1 v1.0.0-20140827164146-4379dff89709
)