-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
24 lines (21 loc) · 868 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
module github.com/farsightsec/dnstap-sensor
go 1.19
require (
github.com/dnstap/golang-dnstap v0.4.0
github.com/farsightsec/go-config v0.0.0-20190917161310-3eab84970e6b
github.com/farsightsec/go-nmsg v0.2.0
github.com/farsightsec/sielink v0.1.1
github.com/golang/protobuf v1.5.2
github.com/miekg/dns v1.1.31
github.com/xeipuuv/gojsonschema v1.2.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/farsightsec/golang-framestream v0.3.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
golang.org/x/net v0.0.0-20190923162816-aa69164e4478 // indirect
golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe // indirect
google.golang.org/protobuf v1.26.0 // indirect
)