chore: update dependencies using go get -u -v ./... (#666)
This diff updates all the dependencies using the aforementioned go command. What remains to be done is to check whether any dependency that we're using has bumped their major verson number, and I'll do that in a subsequent pull request. Reference issue: https://github.com/ooni/probe/issues/1894.
This commit is contained in:
parent
27d8782d95
commit
4342543934
2 changed files with 60 additions and 53 deletions
22
go.mod
22
go.mod
|
|
@ -7,7 +7,7 @@ require (
|
|||
git.torproject.org/pluggable-transports/goptlib.git v1.2.0
|
||||
git.torproject.org/pluggable-transports/snowflake.git v1.1.0
|
||||
github.com/alecthomas/kingpin v2.2.6+incompatible
|
||||
github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a // indirect
|
||||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
||||
github.com/apex/log v1.9.0
|
||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
|
||||
github.com/creack/goselect v0.1.2 // indirect
|
||||
|
|
@ -24,36 +24,36 @@ require (
|
|||
github.com/iancoleman/strcase v0.2.0
|
||||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
||||
github.com/klauspost/reedsolomon v1.9.15 // indirect
|
||||
github.com/lucas-clemente/quic-go v0.24.0
|
||||
github.com/lucas-clemente/quic-go v0.25.0
|
||||
github.com/marten-seemann/qtls-go1-17 v0.1.0
|
||||
github.com/mattn/go-colorable v0.1.12
|
||||
github.com/mattn/go-sqlite3 v1.14.9 // indirect
|
||||
github.com/mattn/go-sqlite3 v1.14.10 // indirect
|
||||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
||||
github.com/miekg/dns v1.1.43
|
||||
github.com/miekg/dns v1.1.45
|
||||
github.com/mitchellh/go-wordwrap v1.0.1
|
||||
github.com/montanaflynn/stats v0.6.6
|
||||
github.com/onsi/ginkgo v1.16.5 // indirect
|
||||
github.com/ooni/go-libtor v1.1.4
|
||||
github.com/ooni/oohttp v0.0.0-20220118112935-940b7f7db71e
|
||||
github.com/ooni/probe-assets v0.7.0
|
||||
github.com/ooni/psiphon v0.9.0
|
||||
github.com/oschwald/geoip2-golang v1.5.0
|
||||
github.com/pborman/getopt/v2 v2.1.0
|
||||
github.com/pion/interceptor v0.1.5 // indirect
|
||||
github.com/pion/stun v0.3.5
|
||||
github.com/pion/webrtc/v3 v3.1.11 // indirect
|
||||
github.com/pion/webrtc/v3 v3.1.16 // indirect
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/rogpeppe/go-internal v1.8.0
|
||||
github.com/rubenv/sql-migrate v0.0.0-20211023115951-9f02b1e13857
|
||||
github.com/rogpeppe/go-internal v1.8.1
|
||||
github.com/rubenv/sql-migrate v1.0.0
|
||||
github.com/sirupsen/logrus v1.7.0 // indirect
|
||||
github.com/templexxx/cpu v0.0.9 // indirect
|
||||
github.com/tjfoc/gmsm v1.4.1 // indirect
|
||||
github.com/xtaci/smux v1.5.16 // indirect
|
||||
github.com/ziutek/mymysql v1.5.4 // indirect
|
||||
gitlab.com/yawning/obfs4.git v0.0.0-20210511220700-e330d1b7024b
|
||||
gitlab.com/yawning/obfs4.git v0.0.0-20220102012252-cbf3f3cfa09c
|
||||
gitlab.com/yawning/utls.git v0.0.12-1
|
||||
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e // indirect
|
||||
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect
|
||||
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d
|
||||
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d
|
||||
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
|
||||
golang.org/x/tools v0.1.8 // indirect
|
||||
gopkg.in/AlecAivazis/survey.v1 v1.8.8
|
||||
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
|
||||
|
|
|
|||
Loading…
Reference in a new issue