Skip to content

Commit 3bc4d0b

Browse files
committed
Merge branch 'master' of github.com:ooni/probe-cli
* 'master' of github.com:ooni/probe-cli: Add support for returning measurement_uid as part of oonimkall API (#1673) fix(echcheck): bump version number in tests (#1671) chore: we are now hacking on 3.25.0-alpha (#1670) fix: dnscheck default input test (#1669) chore: update assets and definitions (#1665) fix: update cdeps version for mobile tests (#1668) fix: reset go version to 1.21 (#1666) chore: upgrade C dependencies (#1664) chore: upgrade dependencies (#1663) chore: upgrade android NDKVERSION (#1662) chore: upgrade GOVERSION to go1.22.2 (#1661) chore: upgrade psiphon to latest staging-client commit (#1659) feat: add fallback domain names for openvpn experiment (#1654) Simplify the dnscheck list (#1656) refactor(oonimkall): expose the session close call (#1657) Switch to using cloudflare-ech.com as the target for the ech test (#1658) Fix missing enabledByDefault in echcheck (#1655)
2 parents 31257b2 + a0e3456 commit 3bc4d0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1213
-675
lines changed

Dockerfile.oonith

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Note: The Dockerfile needs to reside in the root of the repo, so that we can
55
# copy files into the docker build context.
6-
FROM golang:1.21.11-bullseye as builder
6+
FROM golang:1.22.2-bullseye as builder
77
ARG BRANCH_NAME=master
88

99
WORKDIR /build
@@ -13,7 +13,7 @@ COPY . .
1313
RUN go run ./internal/cmd/buildtool oohelperd build
1414

1515
## Image running on the host
16-
FROM golang:1.21.11-bullseye as runner
16+
FROM golang:1.22.2-bullseye as runner
1717

1818
WORKDIR /app
1919

GOVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.21.11
1+
1.22.2

NDKVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
27.0.12077973
1+
27.2.12479018

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ builds use the latest commit of the `master` branch.
7272
To setup development for this repository you need Go >= 1.15. The
7373
`./script/go.bash` script will automatically download the expected
7474
version of Go mentioned in the [GOVERSION](GOVERSION) file (i.e.,
75-
go1.21.11) and use it for building.
75+
go1.22.2) and use it for building.
7676

7777
You can also bypass `./script/go.bash` and build ooniprobe manually using
7878
`go build ...` but, in such a case, note that:
@@ -146,10 +146,10 @@ using the correct version of Go. Running this script as follows:
146146
Is equivalent to running these commands:
147147

148148
```bash
149-
go install -v golang.org/dl/go1.21.11@latest
150-
$HOME/go/bin/go1.21.11 download
149+
go install -v golang.org/dl/go1.22.2@latest
150+
$HOME/go/bin/go1.22.2 download
151151
export GOTOOLCHAIN=local
152-
$HOME/sdk/go1.21.11/bin/go build -v -ldflags '-s -w' ./internal/cmd/miniooni
152+
$HOME/sdk/go1.22.2/bin/go build -v -ldflags '-s -w' ./internal/cmd/miniooni
153153
```
154154

155155
### Common build targets

cmd/ooniprobe/internal/nettests/nettests.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func (c *Controller) Run(builder model.ExperimentBuilder, inputs []model.Experim
215215
// Implementation note: SubmitMeasurement will fail here if we did fail
216216
// to open the report but we still want to continue. There will be a
217217
// bit of a spew in the logs, perhaps, but stopping seems less efficient.
218-
if err := exp.SubmitAndUpdateMeasurementContext(context.Background(), measurement); err != nil {
218+
if _, err := exp.SubmitAndUpdateMeasurementContext(context.Background(), measurement); err != nil {
219219
log.Debug(color.RedString("failure.measurement_submission"))
220220
if err := db.UploadFailed(c.msmts[idx64], err.Error()); err != nil {
221221
return errors.Wrap(err, "failed to mark upload as failed")

go.mod

Lines changed: 134 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,159 +1,201 @@
11
module github.com/ooni/probe-cli/v3
22

3-
go 1.21
3+
go 1.21.0
44

5-
toolchain go1.21.11
5+
toolchain go1.22.2
66

77
require (
8-
filippo.io/age v1.1.1
8+
filippo.io/age v1.2.0
99
github.com/AlecAivazis/survey/v2 v2.3.7
10-
github.com/Psiphon-Labs/psiphon-tunnel-core v1.0.11-0.20240705153833-eea9ace08cd1
10+
github.com/Psiphon-Labs/psiphon-tunnel-core v1.0.11-0.20241119203223-a6c5cfa67fd9
1111
github.com/alecthomas/kingpin/v2 v2.4.0
1212
github.com/apex/log v1.9.0
1313
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
1414
github.com/cloudflare/circl v1.3.8
1515
github.com/cretz/bine v0.2.0
1616
github.com/dop251/goja v0.0.0-20231027120936-b396bb4c349d
1717
github.com/dop251/goja_nodejs v0.0.0-20240418154818-2aae10d4cbcf
18-
github.com/fatih/color v1.17.0
18+
github.com/fatih/color v1.18.0
1919
github.com/google/go-cmp v0.6.0
2020
github.com/google/gopacket v1.1.19
2121
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
2222
github.com/google/uuid v1.6.0
23-
github.com/gorilla/websocket v1.5.1
23+
github.com/gorilla/websocket v1.5.3
2424
github.com/hexops/gotextdiff v1.0.3
2525
github.com/mattn/go-colorable v0.1.13
26-
github.com/miekg/dns v1.1.59
26+
github.com/mattn/go-sqlite3 v1.14.24
27+
github.com/miekg/dns v1.1.62
2728
github.com/mitchellh/go-wordwrap v1.0.1
2829
github.com/montanaflynn/stats v0.7.1
29-
github.com/ooni/minivpn v0.0.6
30+
github.com/ooni/minivpn v0.0.7
3031
github.com/ooni/netem v0.0.0-20240208095707-608dcbcd82b8
31-
github.com/ooni/oocrypto v0.6.2
32-
github.com/ooni/oohttp v0.7.3
33-
github.com/ooni/probe-assets v0.24.0
32+
github.com/ooni/oocrypto v0.7.0
33+
github.com/ooni/oohttp v0.8.0
34+
github.com/ooni/probe-assets v0.25.0
35+
github.com/oschwald/maxminddb-golang v1.13.1
3436
github.com/pborman/getopt/v2 v2.1.0
3537
github.com/pion/stun v0.6.1
3638
github.com/pkg/errors v0.9.1
39+
github.com/prometheus/client_golang v1.20.5
3740
github.com/quic-go/quic-go v0.43.1
3841
github.com/rogpeppe/go-internal v1.12.0
3942
github.com/rubenv/sql-migrate v1.7.0
4043
github.com/schollz/progressbar/v3 v3.14.2
41-
github.com/upper/db/v4 v4.8.0
44+
github.com/spf13/cobra v1.8.1
45+
github.com/tailscale/hujson v0.0.0-20221223112325-20486734a56a
46+
github.com/upper/db/v4 v4.9.0
4247
gitlab.com/yawning/obfs4.git v0.0.0-20231012084234-c3e2d44b1033
4348
gitlab.com/yawning/utls.git v0.0.12-1
44-
gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib v1.5.0
45-
gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/v2 v2.6.1
46-
golang.org/x/crypto v0.24.0
47-
golang.org/x/net v0.25.0
48-
golang.org/x/sys v0.21.0
49+
gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib v1.6.0
50+
gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/v2 v2.10.1
51+
golang.org/x/crypto v0.29.0
52+
golang.org/x/net v0.31.0
53+
golang.org/x/sys v0.27.0
4954
)
5055

5156
require (
52-
filippo.io/bigmod v0.0.3 // indirect
57+
filippo.io/bigmod v0.0.1 // indirect
58+
filippo.io/edwards25519 v1.1.0 // indirect
5359
filippo.io/keygen v0.0.0-20230306160926-5201437acf8e // indirect
60+
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
5461
github.com/Psiphon-Labs/bolt v0.0.0-20200624191537-23cedaef7ad7 // indirect
62+
github.com/Psiphon-Labs/consistent v0.0.0-20240322131436-20aaa4e05737 // indirect
5563
github.com/Psiphon-Labs/goptlib v0.0.0-20200406165125-c0e32a7a3464 // indirect
56-
github.com/Psiphon-Labs/psiphon-tls v0.0.0-20240424193802-52b2602ec60c // indirect
57-
github.com/Psiphon-Labs/quic-go v0.0.0-20240424181006-45545f5e1536 // indirect
64+
github.com/Psiphon-Labs/psiphon-tls v0.0.0-20240824224428-ca6969e315a9 // indirect
65+
github.com/Psiphon-Labs/quic-go v0.0.0-20240821052333-b6316b594e39 // indirect
66+
github.com/Psiphon-Labs/utls v1.1.1-0.20241107183331-b18909f8ccaa // indirect
67+
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
68+
github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa // indirect
5869
github.com/andybalholm/brotli v1.0.6 // indirect
59-
github.com/davecgh/go-spew v1.1.1 // indirect
60-
github.com/dlclark/regexp2 v1.10.0 // indirect
61-
github.com/flynn/noise v1.0.1 // indirect
62-
github.com/gaukas/godicttls v0.0.4 // indirect
63-
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
64-
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
65-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
66-
github.com/google/btree v1.1.2 // indirect
67-
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect
68-
github.com/inconshreveable/mousetrap v1.1.0 // indirect
69-
github.com/klauspost/compress v1.17.8 // indirect
70-
github.com/libp2p/go-reuseport v0.4.0 // indirect
71-
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
72-
github.com/mroth/weightedrand v1.0.0 // indirect
73-
github.com/onsi/ginkgo/v2 v2.17.3 // indirect
74-
github.com/pelletier/go-toml v1.9.5 // indirect
75-
github.com/pion/transport/v2 v2.2.5 // indirect
76-
github.com/pmezard/go-difflib v1.0.0 // indirect
77-
github.com/quic-go/qpack v0.4.0 // indirect
78-
github.com/refraction-networking/conjure v0.7.11-0.20240130155008-c8df96195ab2 // indirect
79-
github.com/refraction-networking/ed25519 v0.1.2 // indirect
80-
github.com/refraction-networking/obfs4 v0.1.2 // indirect
81-
github.com/rivo/uniseg v0.4.7 // indirect
82-
github.com/segmentio/fasthash v1.0.3 // indirect
83-
github.com/spf13/pflag v1.0.5 // indirect
84-
github.com/stretchr/testify v1.9.0 // indirect
85-
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
86-
gitlab.com/yawning/edwards25519-extra v0.0.0-20231005122941-2149dcafc266 // indirect
87-
go.uber.org/mock v0.4.0 // indirect
88-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
89-
golang.org/x/exp/typeparams v0.0.0-20230522175609-2e198f4a06a1 // indirect
90-
golang.org/x/sync v0.7.0 // indirect
91-
golang.org/x/time v0.5.0 // indirect
92-
gopkg.in/yaml.v3 v3.0.1 // indirect
93-
gvisor.dev/gvisor v0.0.0-20230922204349-b3f36d574a7f // indirect
94-
)
95-
96-
require (
97-
filippo.io/edwards25519 v1.1.0 // indirect
98-
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
99-
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
100-
github.com/armon/go-proxyproto v0.1.0 // indirect
70+
github.com/armon/go-proxyproto v0.0.0-20180202201750-5b7edb60ff5f // indirect
71+
github.com/aws/aws-sdk-go-v2 v1.32.2 // indirect
72+
github.com/aws/aws-sdk-go-v2/config v1.28.0 // indirect
73+
github.com/aws/aws-sdk-go-v2/credentials v1.17.41 // indirect
74+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17 // indirect
75+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect
76+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect
77+
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
78+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
79+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.2 // indirect
80+
github.com/aws/aws-sdk-go-v2/service/sqs v1.36.2 // indirect
81+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.2 // indirect
82+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.2 // indirect
83+
github.com/aws/aws-sdk-go-v2/service/sts v1.32.2 // indirect
84+
github.com/aws/smithy-go v1.22.0 // indirect
10185
github.com/beorn7/perks v1.0.1 // indirect
10286
github.com/bifurcation/mint v0.0.0-20180306135233-198357931e61 // indirect
87+
github.com/bits-and-blooms/bitset v1.10.0 // indirect
88+
github.com/bits-and-blooms/bloom/v3 v3.6.0 // indirect
89+
github.com/cespare/xxhash v1.1.0 // indirect
10390
github.com/cespare/xxhash/v2 v2.3.0 // indirect
104-
github.com/cheekybits/genny v1.0.0 // indirect
91+
github.com/cheekybits/genny v0.0.0-20170328200008-9127e812e1e9 // indirect
10592
github.com/cognusion/go-cache-lru v0.0.0-20170419142635-f73e2280ecea // indirect
93+
github.com/coreos/go-iptables v0.7.0 // indirect
94+
github.com/davecgh/go-spew v1.1.1 // indirect
95+
github.com/dblohm7/wingoes v0.0.0-20230929194252-e994401fc077 // indirect
10696
github.com/dchest/siphash v1.2.3 // indirect
107-
github.com/dgraph-io/badger v1.6.2 // indirect
108-
github.com/dgraph-io/ristretto v0.1.1 // indirect
97+
github.com/dgraph-io/badger v1.5.4-0.20180815194500-3a87f6d9c273 // indirect
98+
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
99+
github.com/dlclark/regexp2 v1.10.0 // indirect
109100
github.com/dsnet/compress v0.0.1 // indirect
110-
github.com/dustin/go-humanize v1.0.1 // indirect
101+
github.com/flynn/noise v1.0.1-0.20220214164934-d803f5c4b0f4 // indirect
102+
github.com/fxamacker/cbor/v2 v2.5.0 // indirect
111103
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
112-
github.com/golang/glog v1.2.1 // indirect
104+
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
105+
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
106+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
107+
github.com/golang/mock v1.6.0 // indirect
113108
github.com/golang/protobuf v1.5.3 // indirect
114-
github.com/grafov/m3u8 v0.12.0 // indirect
109+
github.com/google/btree v1.1.2 // indirect
110+
github.com/google/nftables v0.1.1-0.20230115205135-9aa6fdf5a28c // indirect
111+
github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 // indirect
112+
github.com/grafov/m3u8 v0.0.0-20171211212457-6ab8f28ed427 // indirect
113+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
114+
github.com/josharian/native v1.1.1-0.20230202152459-5c7d0dd6ab86 // indirect
115+
github.com/jsimonetti/rtnetlink v1.3.5 // indirect
115116
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
117+
github.com/klauspost/compress v1.17.9 // indirect
116118
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
117-
github.com/klauspost/reedsolomon v1.11.8 // indirect
119+
github.com/klauspost/reedsolomon v1.12.0 // indirect
120+
github.com/libp2p/go-reuseport v0.4.0 // indirect
118121
github.com/mattn/go-isatty v0.0.20 // indirect
119-
github.com/mattn/go-sqlite3 v1.14.22
120-
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
121-
github.com/oschwald/maxminddb-golang v1.13.1
122-
github.com/pion/datachannel v1.5.6 // indirect
123-
github.com/pion/dtls/v2 v2.2.11 // indirect
124-
github.com/pion/ice/v2 v2.3.24 // indirect
122+
github.com/mdlayher/netlink v1.7.2 // indirect
123+
github.com/mdlayher/socket v0.5.0 // indirect
124+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
125+
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
126+
github.com/mroth/weightedrand v1.0.0 // indirect
127+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
128+
github.com/onsi/ginkgo/v2 v2.12.0 // indirect
129+
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
130+
github.com/pelletier/go-toml v1.9.5 // indirect
131+
github.com/pion/datachannel v1.5.8 // indirect
132+
github.com/pion/dtls/v2 v2.2.12 // indirect
133+
github.com/pion/dtls/v3 v3.0.1 // indirect
134+
github.com/pion/ice/v2 v2.3.36 // indirect
125135
github.com/pion/interceptor v0.1.29 // indirect
126136
github.com/pion/logging v0.2.2 // indirect
127137
github.com/pion/mdns v0.0.12 // indirect
128138
github.com/pion/randutil v0.1.0 // indirect
129139
github.com/pion/rtcp v1.2.14 // indirect
130-
github.com/pion/rtp v1.8.6 // indirect
131-
github.com/pion/sctp v1.8.16 // indirect
140+
github.com/pion/rtp v1.8.7 // indirect
141+
github.com/pion/sctp v1.8.19 // indirect
132142
github.com/pion/sdp/v3 v3.0.9 // indirect
133-
github.com/pion/srtp/v2 v2.0.18 // indirect
143+
github.com/pion/srtp/v2 v2.0.20 // indirect
144+
github.com/pion/stun/v3 v3.0.0 // indirect
145+
github.com/pion/transport/v2 v2.2.10 // indirect
146+
github.com/pion/transport/v3 v3.0.7 // indirect
134147
github.com/pion/turn/v2 v2.1.6 // indirect
135-
github.com/pion/webrtc/v3 v3.2.40 // indirect
136-
github.com/prometheus/client_golang v1.19.1
148+
github.com/pion/webrtc/v3 v3.3.4 // indirect
149+
github.com/pmezard/go-difflib v1.0.0 // indirect
137150
github.com/prometheus/client_model v0.6.1 // indirect
138-
github.com/prometheus/common v0.53.0 // indirect
139-
github.com/prometheus/procfs v0.14.0 // indirect
151+
github.com/prometheus/common v0.55.0 // indirect
152+
github.com/prometheus/procfs v0.15.1 // indirect
153+
github.com/quic-go/qpack v0.4.0 // indirect
154+
github.com/realclientip/realclientip-go v1.0.0 // indirect
155+
github.com/refraction-networking/conjure v0.7.11-0.20240130155008-c8df96195ab2 // indirect
156+
github.com/refraction-networking/ed25519 v0.1.2 // indirect
140157
github.com/refraction-networking/gotapdance v1.7.10 // indirect
141-
github.com/refraction-networking/utls v1.3.3 // indirect
158+
github.com/refraction-networking/obfs4 v0.1.2 // indirect
159+
github.com/refraction-networking/utls v1.6.7 // indirect
160+
github.com/rivo/uniseg v0.4.7 // indirect
161+
github.com/segmentio/fasthash v1.0.3 // indirect
142162
github.com/sergeyfrolov/bsbuffer v0.0.0-20180903213811-94e85abb8507 // indirect
143163
github.com/sirupsen/logrus v1.9.3 // indirect
144-
github.com/spf13/cobra v1.8.0
164+
github.com/spf13/pflag v1.0.5 // indirect
165+
github.com/stretchr/testify v1.9.0 // indirect
145166
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
146-
github.com/tailscale/hujson v0.0.0-20221223112325-20486734a56a
167+
github.com/tailscale/goupnp v1.0.1-0.20210804011211-c64d0f06ea05 // indirect
168+
github.com/tailscale/netlink v1.1.1-0.20211101221916-cabfb018fe85 // indirect
147169
github.com/templexxx/cpu v0.1.0 // indirect
148170
github.com/templexxx/xorsimd v0.4.2 // indirect
149171
github.com/tjfoc/gmsm v1.4.1 // indirect
172+
github.com/txthinking/runnergroup v0.0.0-20210608031112-152c7c4432bf // indirect
173+
github.com/txthinking/socks5 v0.0.0-20230325130024-4230056ae301 // indirect
174+
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
175+
github.com/vishvananda/netns v0.0.4 // indirect
150176
github.com/wader/filtertransport v0.0.0-20200316221534-bdd9e61eee78 // indirect
151-
github.com/xtaci/kcp-go/v5 v5.6.2 // indirect
152-
github.com/xtaci/smux v1.5.24 // indirect
177+
github.com/wlynxg/anet v0.0.3 // indirect
178+
github.com/x448/float16 v0.8.4 // indirect
179+
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
180+
github.com/xtaci/kcp-go/v5 v5.6.8 // indirect
181+
github.com/xtaci/smux v1.5.31 // indirect
153182
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
154-
golang.org/x/mod v0.17.0 // indirect
155-
golang.org/x/term v0.21.0 // indirect
156-
golang.org/x/text v0.16.0 // indirect
157-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
158-
google.golang.org/protobuf v1.34.1 // indirect
183+
gitlab.com/yawning/edwards25519-extra v0.0.0-20231005122941-2149dcafc266 // indirect
184+
gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/ptutil v0.0.0-20240710081135-6c4d8ed41027 // indirect
185+
go.uber.org/mock v0.4.0 // indirect
186+
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect
187+
go4.org/netipx v0.0.0-20230824141953-6213f710f925 // indirect
188+
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
189+
golang.org/x/mod v0.18.0 // indirect
190+
golang.org/x/sync v0.9.0 // indirect
191+
golang.org/x/term v0.26.0 // indirect
192+
golang.org/x/text v0.20.0 // indirect
193+
golang.org/x/time v0.5.0 // indirect
194+
golang.org/x/tools v0.22.0 // indirect
195+
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
196+
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
197+
google.golang.org/protobuf v1.34.2 // indirect
198+
gopkg.in/yaml.v3 v3.0.1 // indirect
199+
gvisor.dev/gvisor v0.0.0-20230928000133-4fe30062272c // indirect
200+
tailscale.com v1.58.2 // indirect
159201
)

0 commit comments

Comments
 (0)