e3e56ff3c2
* Add updated github.com/miekg/dns to go modules
* Add updated github.com/miekg/dns to vendor
* Fix github.com/miekg/dns api breakage
* Decrease size when trimming UDP packets
Need more room for the header(?), if we don't decrease the size we get an
"overflow unpacking uint32" from the dns library
* Fix dns truncate tests with api changes
* Make windows build working again. Upgrade x/sys and x/crypto and vendor
This upgrade is needed because of API breakage in x/sys introduced
by the minimal x/sys dependency of miekg/dns
This API breakage has been fixed in commit
855e68c859
13 lines
371 B
Modula-2
13 lines
371 B
Modula-2
module github.com/miekg/dns
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392
|
|
golang.org/x/net v0.0.0-20190923162816-aa69164e4478
|
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58
|
|
golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe
|
|
golang.org/x/text v0.3.2 // indirect
|
|
golang.org/x/tools v0.0.0-20190907020128-2ca718005c18 // indirect
|
|
)
|