|
| 1 | +module go.blockdaemon.com/pyth_exporter |
| 2 | + |
| 3 | +go 1.17 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/cenkalti/backoff/v4 v4.1.2 |
| 7 | + github.com/gagliardetto/binary v0.6.1 |
| 8 | + github.com/gagliardetto/solana-go v1.3.0 |
| 9 | + github.com/prometheus/client_golang v1.12.1 |
| 10 | + go.uber.org/zap v1.16.0 |
| 11 | + golang.org/x/sync v0.0.0-20201207232520-09787c993a3a |
| 12 | +) |
| 13 | + |
| 14 | +require ( |
| 15 | + contrib.go.opencensus.io/exporter/stackdriver v0.13.4 // indirect |
| 16 | + filippo.io/edwards25519 v1.0.0-rc.1 // indirect |
| 17 | + github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect |
| 18 | + github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59 // indirect |
| 19 | + github.com/beorn7/perks v1.0.1 // indirect |
| 20 | + github.com/blendle/zapdriver v1.3.1 // indirect |
| 21 | + github.com/buger/jsonparser v1.1.1 // indirect |
| 22 | + github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 23 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 24 | + github.com/dfuse-io/logging v0.0.0-20210109005628-b97a57253f70 // indirect |
| 25 | + github.com/fatih/color v1.9.0 // indirect |
| 26 | + github.com/gagliardetto/treeout v0.1.4 // indirect |
| 27 | + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect |
| 28 | + github.com/golang/protobuf v1.5.2 // indirect |
| 29 | + github.com/gorilla/rpc v1.2.0 // indirect |
| 30 | + github.com/gorilla/websocket v1.4.2 // indirect |
| 31 | + github.com/json-iterator/go v1.1.12 // indirect |
| 32 | + github.com/klauspost/compress v1.13.6 // indirect |
| 33 | + github.com/logrusorgru/aurora v2.0.3+incompatible // indirect |
| 34 | + github.com/mattn/go-colorable v0.1.4 // indirect |
| 35 | + github.com/mattn/go-isatty v0.0.11 // indirect |
| 36 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 37 | + github.com/mitchellh/go-testing-interface v1.14.1 // indirect |
| 38 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 39 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 40 | + github.com/mostynb/zstdpool-freelist v0.0.0-20201229113212-927304c0c3b1 // indirect |
| 41 | + github.com/mr-tron/base58 v1.2.0 // indirect |
| 42 | + github.com/prometheus/client_model v0.2.0 // indirect |
| 43 | + github.com/prometheus/common v0.32.1 // indirect |
| 44 | + github.com/prometheus/procfs v0.7.3 // indirect |
| 45 | + github.com/teris-io/shortid v0.0.0-20201117134242-e59966efd125 // indirect |
| 46 | + github.com/tidwall/gjson v1.9.3 // indirect |
| 47 | + github.com/tidwall/match v1.1.1 // indirect |
| 48 | + github.com/tidwall/pretty v1.2.0 // indirect |
| 49 | + go.opencensus.io v0.22.5 // indirect |
| 50 | + go.uber.org/atomic v1.7.0 // indirect |
| 51 | + go.uber.org/multierr v1.6.0 // indirect |
| 52 | + go.uber.org/ratelimit v0.2.0 // indirect |
| 53 | + golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect |
| 54 | + golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect |
| 55 | + golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect |
| 56 | + google.golang.org/protobuf v1.26.0 // indirect |
| 57 | +) |
| 58 | + |
| 59 | +replace github.com/gagliardetto/solana-go => github.com/Blockdaemon/solana-go v0.5.2-0.20220222095515-4a3ecddb010b |
0 commit comments