39 lines
1.3 KiB
Modula-2
39 lines
1.3 KiB
Modula-2
module dns-server
|
||
|
||
go 1.23.0
|
||
|
||
toolchain go1.24.10
|
||
|
||
require (
|
||
github.com/gorilla/websocket v1.5.1
|
||
github.com/miekg/dns v1.1.68
|
||
github.com/sirupsen/logrus v1.9.3
|
||
github.com/swaggo/http-swagger v1.2.0
|
||
)
|
||
|
||
// 清理不需要的依赖
|
||
// 之前的go.sum可能包含lumberjack的记录,但现在已经不再使用
|
||
|
||
require (
|
||
github.com/KyleBanks/depth v1.2.1 // indirect
|
||
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
||
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
||
github.com/go-openapi/jsonreference v0.19.6 // indirect
|
||
github.com/go-openapi/spec v0.20.4 // indirect
|
||
github.com/go-openapi/swag v0.19.15 // indirect
|
||
github.com/google/go-cmp v0.7.0 // indirect
|
||
github.com/josharian/intern v1.0.0 // indirect
|
||
github.com/mailru/easyjson v0.7.6 // indirect
|
||
github.com/stretchr/testify v1.10.0 // indirect
|
||
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect
|
||
github.com/swaggo/swag v1.7.8 // indirect
|
||
golang.org/x/mod v0.25.0 // indirect
|
||
golang.org/x/net v0.42.0 // indirect
|
||
golang.org/x/sync v0.16.0 // indirect
|
||
golang.org/x/sys v0.35.0 // indirect
|
||
golang.org/x/text v0.27.0 // indirect
|
||
golang.org/x/tools v0.34.0 // indirect
|
||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||
)
|