Integrate Tendermint v0.35.0, including changes to build and test plumbing necessary to make everything build. This change does not update any SDK APIs to make use of new features. Co-authored-by: marbar3778 <marbar3778@yahoo.com> Co-authored-by: tycho garen <garen@tychoish.com> Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com> Co-authored-by: Callum Waters <cmwaters19@gmail.com>
92 lines
4.1 KiB
Modula-2
92 lines
4.1 KiB
Modula-2
go 1.17
|
|
|
|
module github.com/cosmos/cosmos-sdk/x/group
|
|
|
|
require (
|
|
github.com/cockroachdb/apd/v2 v2.0.2
|
|
github.com/cosmos/cosmos-proto v0.0.0-20210914142853-23ed61ac79ce
|
|
github.com/cosmos/cosmos-sdk v0.44.0
|
|
github.com/gogo/protobuf v1.3.3
|
|
github.com/stretchr/testify v1.7.0
|
|
google.golang.org/grpc v1.42.0
|
|
google.golang.org/protobuf v1.27.1
|
|
pgregory.net/rapid v0.4.7
|
|
)
|
|
|
|
require github.com/tendermint/tm-db v0.6.4
|
|
|
|
require (
|
|
github.com/armon/go-metrics v0.3.10 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/btcsuite/btcd v0.22.0-beta // indirect
|
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/confio/ics23/go v0.6.6 // indirect
|
|
github.com/cosmos/btcutil v1.0.4 // indirect
|
|
github.com/cosmos/iavl v0.17.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
|
|
github.com/dgraph-io/ristretto v0.1.0 // indirect
|
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/golang/glog v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/btree v1.0.1 // indirect
|
|
github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.13.6 // indirect
|
|
github.com/lazyledger/smt v0.2.1-0.20210709230900-03ea40719554 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.2 // indirect
|
|
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.11.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/rs/zerolog v1.26.0 // indirect
|
|
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/cobra v1.2.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.9.0 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
|
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
|
github.com/tendermint/go-amino v0.16.0 // indirect
|
|
github.com/tendermint/tendermint v0.35.0 // indirect
|
|
go.etcd.io/bbolt v1.3.5 // indirect
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/ini.v1 v1.63.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|
|
|
|
replace google.golang.org/grpc => google.golang.org/grpc v1.33.2
|
|
|
|
replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
|
|
|
|
replace github.com/cosmos/cosmos-sdk => ../../
|
|
|
|
replace github.com/cosmos/cosmos-sdk/db => ../../db
|