-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 705 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 705 Bytes
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/ameshkov/dnslookup
go 1.25.5
require (
github.com/AdguardTeam/dnsproxy v0.78.2
github.com/AdguardTeam/golibs v0.35.4
github.com/ameshkov/dnsstamps v1.0.3
github.com/miekg/dns v1.1.69
)
require (
github.com/ameshkov/dnscrypt/v2 v2.4.0 // indirect
github.com/quic-go/qpack v0.5.1 // indirect
github.com/quic-go/quic-go v0.56.0 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/exp v0.0.0-20251113190631-e25ba8c21ef6 // indirect
golang.org/x/mod v0.30.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sync v0.18.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/tools v0.39.0 // indirect
)