-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
30 lines (27 loc) · 960 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
29
30
module github.com/mimuret/dnsutils
go 1.21
require (
github.com/dnstap/golang-dnstap v0.4.0
github.com/miekg/dns v1.1.56
github.com/mimuret/intcast v0.2.0
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.14.0
github.com/pkg/errors v0.9.1
golang.org/x/exp v0.0.0-20220826205824-bd9bcdd0b820
golang.org/x/net v0.17.0
)
require (
github.com/farsightsec/golang-framestream v0.3.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.13.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)