-
Notifications
You must be signed in to change notification settings - Fork 30
/
go.mod
27 lines (24 loc) · 961 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
module github.com/wolf-joe/ts-dns
go 1.17
require (
github.com/BurntSushi/toml v1.2.1
github.com/agiledragon/gomonkey v2.0.1+incompatible
github.com/miekg/dns v1.1.50
github.com/sirupsen/logrus v1.9.0
github.com/sparrc/go-ping v0.0.0-20190613174326-4e5b6552494c
github.com/stretchr/testify v1.7.0
github.com/valyala/fastrand v1.0.0
github.com/wolf-joe/go-ipset v0.0.0-20221126092954-3bc3b2576989
github.com/yl2chen/cidranger v1.0.2
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985
)
require (
github.com/coreos/go-semver v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
golang.org/x/tools v0.1.6-0.20210726203631-07bc1bf47fb2 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)