Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.7.1...v1.7.2) --- updated-dependencies: - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Julien Robert <julien@rbrt.fr>
35 lines
1.3 KiB
Modula-2
35 lines
1.3 KiB
Modula-2
go 1.18
|
|
|
|
module github.com/cosmos/cosmos-sdk/db
|
|
|
|
require (
|
|
// Note: gorocksdb bindings for OptimisticTransactionDB are not merged upstream, so we use a fork
|
|
// See https://github.com/tecbot/gorocksdb/pull/216
|
|
github.com/cosmos/gorocksdb v1.2.0
|
|
github.com/dgraph-io/badger/v3 v3.2103.2
|
|
github.com/dgraph-io/ristretto v0.1.0
|
|
github.com/google/btree v1.0.1
|
|
github.com/stretchr/testify v1.7.2
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/glog v1.0.0 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/flatbuffers v2.0.0+incompatible // indirect
|
|
github.com/klauspost/compress v1.13.6 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|