mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 21:36:26 +00:00
Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com> Closes #5907 - add init-corpus to blockchain reactor - remove validator-set FromBytes test now that we have proto, we don't need to test it! bye amino - simplify mempool test do we want to test remote ABCI app? - do not recreate mux on every crash in jsonrpc test - update p2p pex reactor test - remove p2p/listener test the API has changed + I did not understand what it's tested anyway - update secretconnection test - add readme and makefile - list inputs in readme - add nightly workflow - remove blockchain fuzz test EncodeMsg / DecodeMsg no longer exist
36 lines
1.2 KiB
Modula-2
36 lines
1.2 KiB
Modula-2
module github.com/tendermint/tendermint
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
|
|
github.com/Workiva/go-datastructures v1.0.52
|
|
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/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.4.3
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/gtank/merlin v0.1.1
|
|
github.com/libp2p/go-buffer-pool v0.0.2
|
|
github.com/minio/highwayhash v1.0.1
|
|
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.0
|
|
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.3
|
|
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
|
|
golang.org/x/net v0.0.0-20201021035429-f5854403a974
|
|
google.golang.org/grpc v1.35.0
|
|
)
|