47 lines
1.8 KiB
Modula-2
Raw Normal View History

2024-09-14 09:12:10 +03:00
module git.krd.sh/krd/powerdns-remote-http-example
go 1.23
require (
github.com/gin-gonic/gin v1.10.0
2025-02-10 22:52:07 +03:00
github.com/google/nftables v0.3.0
github.com/miekg/dns v1.1.63
2024-09-14 09:12:10 +03:00
)
require (
2025-02-10 22:52:07 +03:00
github.com/bytedance/sonic v1.12.8 // indirect
2025-01-23 16:39:21 +03:00
github.com/bytedance/sonic/loader v0.2.3 // indirect
github.com/cloudwego/base64x v0.1.5 // indirect
2025-01-12 23:49:54 +03:00
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
github.com/gin-contrib/sse v1.0.0 // indirect
2024-09-14 09:12:10 +03:00
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
2025-01-23 16:39:21 +03:00
github.com/go-playground/validator/v10 v10.24.0 // indirect
2025-02-10 22:52:07 +03:00
github.com/goccy/go-json v0.10.5 // indirect
2024-09-14 09:12:10 +03:00
github.com/google/go-cmp v0.6.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
2024-12-10 06:50:07 +03:00
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
2024-12-30 01:54:29 +03:00
github.com/kr/pretty v0.3.1 // indirect
2024-09-14 09:12:10 +03:00
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2025-02-10 22:52:07 +03:00
github.com/mdlayher/netlink v1.7.3-0.20250113171957-fbb4dce95f42 // indirect
2024-09-14 09:12:10 +03:00
github.com/mdlayher/socket v0.5.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
2024-12-30 01:54:29 +03:00
github.com/rogpeppe/go-internal v1.13.1 // indirect
2024-09-14 09:12:10 +03:00
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
2025-02-10 22:52:07 +03:00
golang.org/x/arch v0.14.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/mod v0.23.0 // indirect
golang.org/x/net v0.35.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/tools v0.30.0 // indirect
google.golang.org/protobuf v1.36.5 // indirect
2024-12-30 01:54:29 +03:00
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2024-09-14 09:12:10 +03:00
gopkg.in/yaml.v3 v3.0.1 // indirect
)