mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 13:26:23 +00:00
This change backports the PostgreSQL indexing sink, addressing part of #6828. Development on the main branch has diverged substantially since the v0.34.x release. It includes package moves, breaking API and protobuf schema changes, and new APIs, all of which together have a large footprint on the mapping between the implementation at tip and the v0.34 release branch. To avoid the need to retrofit all of those improvements, this change works by injecting the new indexing sink into the existing (v0.34) indexing interfaces by delegation. This means the backport does _not_ pull in all the newer APIs for event handling, and thus has minimal impact on existing code written against the v0.34 package structure. This change includes the test for the `psql` implementation, and thus updates some Go module dependencies. Because it does not interact with any other types, however, I did not add any unit tests to other packages in this change. Related changes: * Update module dependencies for psql backport. * Update test data to be type-compatible with the old protobuf types. * Add config settings for the PostgreSQL indexer. * Clean up some linter settings. * Hook up the psql indexer in the node main.
45 lines
1.6 KiB
Modula-2
45 lines
1.6 KiB
Modula-2
module github.com/tendermint/tendermint
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
|
|
github.com/Microsoft/go-winio v0.5.0 // indirect
|
|
github.com/Workiva/go-datastructures v1.0.52
|
|
github.com/adlio/schema v1.1.13
|
|
github.com/btcsuite/btcd v0.21.0-beta
|
|
github.com/btcsuite/btcutil v1.0.2
|
|
github.com/confio/ics23/go v0.6.3
|
|
github.com/containerd/continuity v0.1.0 // indirect
|
|
github.com/cosmos/iavl v0.15.3
|
|
github.com/fortytw2/leaktest v1.3.0
|
|
github.com/go-kit/kit v0.10.0
|
|
github.com/go-logfmt/logfmt v0.5.0
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/protobuf v1.5.0
|
|
github.com/google/orderedcode v0.0.1
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/gtank/merlin v0.1.1
|
|
github.com/lib/pq v1.2.0
|
|
github.com/libp2p/go-buffer-pool v0.0.2
|
|
github.com/minio/highwayhash v1.0.1
|
|
github.com/opencontainers/runc v1.0.2 // indirect
|
|
github.com/ory/dockertest v3.3.5+incompatible
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.8.0
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
|
|
github.com/rs/cors v1.7.0
|
|
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa
|
|
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
|
|
github.com/spf13/cobra v1.1.1
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/tendermint/tm-db v0.6.4
|
|
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
|
|
golang.org/x/net v0.0.0-20210903162142-ad29c8ab022f
|
|
golang.org/x/sys v0.0.0-20210903071746-97244b99971b // indirect
|
|
google.golang.org/grpc v1.37.0
|
|
)
|