-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
35 lines (32 loc) · 1.54 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module go.vocdoni.io/api
go 1.16
require (
github.com/adlio/schema v1.2.3 // indirect
github.com/arnaucube/go-blindsecp256k1 v0.0.0-20211204171003-644e7408753f
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/ethereum/go-ethereum v1.10.16
github.com/frankban/quicktest v1.14.2
github.com/google/uuid v1.3.0
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgx v3.6.2+incompatible
github.com/jmoiron/sqlx v1.2.1-0.20200615141059-0794cb1f47ee
github.com/lib/pq v1.10.4
github.com/prometheus/client_golang v1.12.1
github.com/rubenv/sql-migrate v0.0.0-20200616145509-8d140a17f351
github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.10.1
github.com/vocdoni/blind-csp v0.1.5-0.20220214165159-4620baa07fa4
go.vocdoni.io/dvote v1.0.4-0.20220331134144-80178eee1693
go.vocdoni.io/proto v1.13.3-0.20220203130255-cbdb9679ec7c
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
google.golang.org/protobuf v1.27.1
)
// Newer versions of the fuse module removed support for MacOS.
// Unfortunately, its downstream users don't handle this properly,
// so our builds simply break for GOOS=darwin.
// Until either upstream or downstream solve this properly,
// force a downgrade to the commit right before support was dropped.
// It's also possible to use downstream's -tags=nofuse, but that's manual.
// TODO(mvdan): remove once we've untangled module dep loops.
replace bazil.org/fuse => bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512