d57c78bc71
This is how I did it: 1. `git clone https://github.com/ooni/probe-engine internal/engine` 2. ``` (cd internal/engine && git describe --tags) v0.23.0 ``` 3. `nvim go.mod` (merging `go.mod` with `internal/engine/go.mod` 4. `rm -rf internal/.git internal/engine/go.{mod,sum}` 5. `git add internal/engine` 6. `find . -type f -name \*.go -exec sed -i 's@/ooni/probe-engine@/ooni/probe-cli/v3/internal/engine@g' {} \;` 7. `go build ./...` (passes) 8. `go test -race ./...` (temporary failure on RiseupVPN) 9. `go mod tidy` 10. this commit message Once this piece of work is done, we can build a new version of `ooniprobe` that is using `internal/engine` directly. We need to do more work to ensure all the other functionality in `probe-engine` (e.g. making mobile packages) are still WAI. Part of https://github.com/ooni/probe/issues/1335
49 lines
2.0 KiB
Modula-2
49 lines
2.0 KiB
Modula-2
module github.com/ooni/probe-cli/v3
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
git.torproject.org/pluggable-transports/goptlib.git v1.1.0
|
|
github.com/alecthomas/kingpin v2.2.6+incompatible
|
|
github.com/alecthomas/units v0.0.0-20201120081800-1786d5ef83d4 // indirect
|
|
github.com/apex/log v1.9.0
|
|
github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054 // indirect
|
|
github.com/cretz/bine v0.1.0
|
|
github.com/dchest/siphash v1.2.2 // indirect
|
|
github.com/fatih/color v1.10.0
|
|
github.com/getsentry/raven-go v0.0.0-20190419175539-919484f041ea
|
|
github.com/golang/protobuf v1.4.3 // indirect
|
|
github.com/google/go-cmp v0.5.2
|
|
github.com/google/martian/v3 v3.1.0
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/google/uuid v1.2.0
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/iancoleman/strcase v0.1.3
|
|
github.com/lucas-clemente/quic-go v0.19.3
|
|
github.com/mattn/go-colorable v0.1.8
|
|
github.com/mattn/go-sqlite3 v1.14.6 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/miekg/dns v1.1.35
|
|
github.com/montanaflynn/stats v0.6.4
|
|
github.com/ooni/psiphon v0.4.0
|
|
github.com/oschwald/geoip2-golang v1.4.0
|
|
github.com/oschwald/maxminddb-golang v1.8.0 // indirect
|
|
github.com/pborman/getopt/v2 v2.1.0
|
|
github.com/pion/stun v0.3.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rogpeppe/go-internal v1.7.0
|
|
github.com/rubenv/sql-migrate v0.0.0-20200616145509-8d140a17f351
|
|
github.com/sirupsen/logrus v1.7.0 // indirect
|
|
gitlab.com/yawning/obfs4.git v0.0.0-20201217005658-f638c33f6c6f
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
|
|
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
|
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
|
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
|
|
golang.org/x/text v0.3.5 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
|
gopkg.in/AlecAivazis/survey.v1 v1.8.8
|
|
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
|
|
upper.io/db.v3 v3.8.0+incompatible
|
|
)
|