mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-04 20:23:59 +00:00
Partial fix for #5291. For details, see [README.md](https://github.com/tendermint/tendermint/blob/erik/e2e-tests/test/e2e/README.md) and [RFC-001](https://github.com/tendermint/tendermint/blob/master/docs/rfc/rfc-001-end-to-end-testing.md). This only includes a single test case under `test/e2e/tests/`, as a proof of concept - additional test cases will be submitted separately. A randomized testnet generator will also be submitted separately, there a currently just a handful of static testnets under `test/e2e/networks/`. This will eventually replace the current P2P tests and run in CI.
33 lines
1.1 KiB
Modula-2
33 lines
1.1 KiB
Modula-2
module github.com/tendermint/tendermint
|
|
|
|
go 1.14
|
|
|
|
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/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.1
|
|
github.com/golang/protobuf v1.4.2
|
|
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/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.7.1
|
|
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.0.0
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/tendermint/tm-db v0.6.2
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc
|
|
google.golang.org/grpc v1.32.0
|
|
)
|