forked from TralahM/blackhat-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
42 lines (38 loc) · 1.44 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
38
39
40
41
42
module github.com/tralahm/blackhat-go
go 1.20
replace github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.4.2
require (
github.com/PuerkitoBio/goquery v1.8.1
github.com/Sirupsen/logrus v0.0.0-00010101000000-000000000000
github.com/go-sql-driver/mysql v1.7.1
github.com/golang/protobuf v1.5.3
github.com/google/gopacket v1.1.19
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/joeljunstrom/go-luhn v0.0.0-20190413165225-1e071b33b576
github.com/miekg/dns v1.1.55
github.com/pkg/errors v0.9.1
github.com/spf13/pflag v1.0.5
github.com/urfave/negroni v1.0.0
github.com/yuin/gopher-lua v1.1.0
golang.org/x/crypto v0.11.0
golang.org/x/net v0.12.0
google.golang.org/grpc v1.56.2
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
gopkg.in/vmihailenco/msgpack.v2 v2.9.2
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
golang.org/x/tools v0.6.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)