- `HEALTH_TARGET_ADDRESS` to replace `HEALTH_ADDRESS_TO_PING` - Remove `github.com/go-ping/ping` dependency - Dial TCP the target address, appending `:443` if port is not set
44 lines
1.8 KiB
Modula-2
44 lines
1.8 KiB
Modula-2
module github.com/qdm12/gluetun
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/breml/rootcerts v0.2.1
|
|
github.com/fatih/color v1.13.0
|
|
github.com/golang/mock v1.6.0
|
|
github.com/qdm12/dns v1.11.0
|
|
github.com/qdm12/golibs v0.0.0-20210822203818-5c568b0777b6
|
|
github.com/qdm12/goshutdown v0.3.0
|
|
github.com/qdm12/gosplash v0.1.0
|
|
github.com/qdm12/gotree v0.2.0
|
|
github.com/qdm12/govalid v0.1.0
|
|
github.com/qdm12/ss-server v0.4.0
|
|
github.com/qdm12/updated v0.0.0-20210603204757-205acfe6937e
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/vishvananda/netlink v1.1.1-0.20211129163951-9ada19101fc5
|
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
|
|
golang.zx2c4.com/wireguard v0.0.0-20210805125648-3957e9b9dd19
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20210803171230-4253848d036c
|
|
inet.af/netaddr v0.0.0-20210718074554-06ca8145d722
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/google/go-cmp v0.5.5 // indirect
|
|
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
|
|
github.com/mattn/go-colorable v0.1.9 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mdlayher/genetlink v1.0.0 // indirect
|
|
github.com/mdlayher/netlink v1.4.0 // indirect
|
|
github.com/miekg/dns v1.1.40 // indirect
|
|
github.com/mr-tron/base58 v1.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 // indirect
|
|
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
|
|
go4.org/intern v0.0.0-20210108033219-3eb7198706b2 // indirect
|
|
go4.org/unsafe/assume-no-moving-gc v0.0.0-20201222180813-1025295fd063 // indirect
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
|
|
golang.org/x/net v0.0.0-20210504132125-bbd867fde50d // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|