We're specifically pinning a commit of probe-engine that is using MK v0.10.11, so that we address the following issues: 1. we use db-ip.com for the country database as opposed to using the increasingly stale MaxMind database (see https://github.com/ooni/probe-engine/issues/334) 2. we're using an implementation of WhatsApp that does not suffer from the super-old CIDR bug (see https://github.com/ooni/probe-engine/issues/341) 3. we're not linking to libcurl anymore on Windows and Linux, thanks to this new version of MK where we can optionally disable libcurl; we are still linking to libcurl on macOS, but that has no impact on the binary size since on macOS libcurl is part of the system This should be enough, from my side to bless a new release of the probe-cli (see https://github.com/ooni/probe/issues/1028).
18 lines
648 B
Modula-2
18 lines
648 B
Modula-2
module github.com/ooni/probe-cli
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/alecthomas/kingpin v2.2.6+incompatible
|
|
github.com/apex/log v1.1.2
|
|
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect
|
|
github.com/fatih/color v1.9.0
|
|
github.com/getsentry/raven-go v0.0.0-20190419175539-919484f041ea
|
|
github.com/mattn/go-colorable v0.1.4
|
|
github.com/ooni/probe-engine v0.7.1-0.20200226205256-ae59c0578995
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rubenv/sql-migrate v0.0.0-20200212082348-64f95ea68aa3
|
|
gopkg.in/AlecAivazis/survey.v1 v1.8.8
|
|
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
|
|
upper.io/db.v3 v3.6.4+incompatible
|
|
)
|