-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gomod-update * fixing import loop + lint errors Co-authored-by: mzack <marco.rivoli.nvh@gmail.com>
- Loading branch information
Showing
3 changed files
with
51 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
module github.com/projectdiscovery/retryabledns | ||
|
||
go 1.14 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/miekg/dns v1.1.50 | ||
github.com/projectdiscovery/blackrock v0.0.0-20220628111055-35616c71b2dc // indirect | ||
github.com/projectdiscovery/fileutil v0.0.0-20220705195237-01becc2a8963 | ||
github.com/projectdiscovery/iputil v0.0.0-20220712175312-b9406f31cdd8 | ||
github.com/projectdiscovery/fileutil v0.0.3 | ||
github.com/projectdiscovery/iputil v0.0.2 | ||
github.com/projectdiscovery/retryablehttp-go v1.0.2 | ||
github.com/projectdiscovery/sliceutil v0.0.0-20220625085859-c3a4ecb669f4 | ||
github.com/projectdiscovery/stringsutil v0.0.0-20220731064040-4b67f194751e | ||
github.com/projectdiscovery/sliceutil v0.0.1 | ||
github.com/projectdiscovery/stringsutil v0.0.2 | ||
github.com/stretchr/testify v1.8.1 | ||
go.uber.org/atomic v1.9.0 // indirect | ||
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462 // indirect | ||
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
) | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/aymerick/douceur v0.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.21 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/mod v0.6.0 // indirect | ||
golang.org/x/net v0.1.0 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
golang.org/x/text v0.4.0 // indirect | ||
golang.org/x/tools v0.2.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters