-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
37 lines (33 loc) · 1.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
module github.com/dariopb/pinger
go 1.18
require (
github.com/creack/pty v1.1.18
github.com/dariopb/goreverselb v0.1.1
github.com/gorilla/websocket v1.5.0
github.com/labstack/echo/v4 v4.7.2
github.com/sirupsen/logrus v1.8.1
github.com/urfave/cli/v2 v2.8.1
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c
)
require (
github.com/golang/protobuf v1.5.2 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/protobuf v1.27.1 // indirect
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
google.golang.org/grpc v1.47.0
)