diff options
author | Brad Fitzpatrick <[email protected]> | 2023-01-24 17:01:54 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-24 20:01:54 -0500 |
commit | 98867ac3468b33c012ae75a14c8d923117629dc2 (patch) | |
tree | 2758d5fd3653ad004297c80a00632794881335b3 /go.mod | |
parent | 5805b3ca11492c2673180e707a643b24100a9e4a (diff) | |
download | caddy-98867ac3468b33c012ae75a14c8d923117629dc2.tar.gz caddy-98867ac3468b33c012ae75a14c8d923117629dc2.zip |
go.mod: bump tscert package to fix Tailscale 1.34+ on Windows (#5331)
As of Tailscale 1.34.0 on Windows, Tailscale now uses a named pipe to
connect to the local tailscale service.
This pulls in tailscale/tscert#5 as reported in tailscale/tscert#4.
(Sorry, we should've noticed this earlier!)
Signed-off-by: Brad Fitzpatrick <[email protected]>
Signed-off-by: Brad Fitzpatrick <[email protected]>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,7 @@ require ( github.com/smallstep/truststore v0.12.0 github.com/spf13/cobra v1.6.0 github.com/spf13/pflag v1.0.5 - github.com/tailscale/tscert v0.0.0-20220316030059-54bbcb9f74e2 + github.com/tailscale/tscert v0.0.0-20230124224810-c6dc1f4049b2 github.com/yuin/goldmark v1.5.2 github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.34.0 @@ -39,6 +39,7 @@ require ( ) require ( + github.com/Microsoft/go-winio v0.6.0 // indirect github.com/fxamacker/cbor/v2 v2.4.0 // indirect github.com/golang/glog v1.0.0 // indirect github.com/golang/mock v1.6.0 // indirect |