-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
78 lines (74 loc) · 3.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module github.com/Chainflow/oasis-mission-control
replace (
// Fixes vulnerabilities in etcd v3.3.{10,13} (dependencies via viper).
// Can be removed once there is a spf13/viper release with updated etcd.
// https://github.com/spf13/viper/issues/956
github.com/coreos/etcd => github.com/coreos/etcd v3.3.25+incompatible
// Updates the version used in spf13/cobra (dependency via tendermint) as
// there is no release yet with the fix. Remove once an updated release of
// spf13/cobra exists and tendermint is updated to include it.
// https://github.com/spf13/cobra/issues/1091
github.com/gorilla/websocket => github.com/gorilla/websocket v1.4.2
github.com/tendermint/tendermint => github.com/oasisprotocol/tendermint v0.34.9-oasis2
golang.org/x/crypto/curve25519 => github.com/oasisprotocol/ed25519/extra/x25519 v0.0.0-20210127160119-f7017427c1ea
golang.org/x/crypto/ed25519 => github.com/oasisprotocol/ed25519 v0.0.0-20210127160119-f7017427c1ea
)
require (
github.com/blevesearch/bleve v1.0.14
github.com/btcsuite/btcutil v1.0.2
github.com/cenkalti/backoff/v4 v4.1.1
github.com/dgraph-io/badger/v2 v2.2007.2
github.com/eapache/channels v1.1.0
github.com/fxamacker/cbor v1.5.1
github.com/fxamacker/cbor/v2 v2.2.1-0.20200820021930-bafca87fa6db
github.com/go-kit/kit v0.10.0
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
github.com/golang/protobuf v1.5.2
github.com/golang/snappy v0.0.3
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/hashicorp/go-hclog v0.16.1
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-plugin v1.4.2
github.com/hpcloud/tail v1.0.0
github.com/ianbruene/go-difflib v1.2.0
github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d
github.com/leodido/go-urn v1.2.1 // indirect
github.com/libp2p/go-libp2p v0.14.1
github.com/libp2p/go-libp2p-core v0.8.5
github.com/libp2p/go-libp2p-pubsub v0.4.1
github.com/multiformats/go-multiaddr v0.3.2
github.com/oasisprotocol/deoxysii v0.0.0-20200527154044-851aec403956
github.com/oasisprotocol/ed25519 v0.0.0-20210127160119-f7017427c1ea
github.com/oasisprotocol/oasis-core/go v0.2102.1
github.com/opentracing/opentracing-go v1.2.0
github.com/prometheus/client_golang v1.10.0
github.com/prometheus/common v0.25.0
github.com/prometheus/procfs v0.6.0
github.com/seccomp/libseccomp-golang v0.9.1
github.com/sendgrid/rest v2.6.4+incompatible // indirect
github.com/sendgrid/sendgrid-go v3.10.0+incompatible
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
github.com/tendermint/go-amino v0.16.0
github.com/tendermint/tendermint v0.34.9
github.com/tendermint/tm-db v0.6.4
github.com/thepudds/fzgo v0.2.2
github.com/uber/jaeger-client-go v2.29.1+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible // indirect
github.com/whyrusleeping/go-logging v0.0.1
gitlab.com/yawning/dynlib.git v0.0.0-20200603163025-35fe007b0761
go.dedis.ch/kyber/v3 v3.0.13
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210423184538-5f58ad60dda6
google.golang.org/genproto v0.0.0-20201119123407-9b1e624d6bc4
google.golang.org/grpc v1.38.0
google.golang.org/grpc/security/advancedtls v0.0.0-20200902210233-8630cac324bf
google.golang.org/protobuf v1.26.0
gopkg.in/go-playground/validator.v9 v9.31.0
)
go 1.15