Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.0 to 1.7.1. <details> <summary>Commits</summary> <ul> <li><a href="083ff1c044"><code>083ff1c</code></a> Fixed didPanic to now detect panic(nil).</li> <li><a href="1e36bfe104"><code>1e36bfe</code></a> Use cross Go version compatible build tag syntax</li> <li><a href="e798dc2763"><code>e798dc2</code></a> Add docs on 1.17 build tags</li> <li><a href="83198c2c50"><code>83198c2</code></a> assert: guard CanConvert call in backward compatible wrapper</li> <li><a href="087b655c75"><code>087b655</code></a> assert: allow comparing time.Time</li> <li><a href="7bcf74e94f"><code>7bcf74e</code></a> fix msgAndArgs forwarding</li> <li><a href="c29de71342"><code>c29de71</code></a> add tests for correct msgAndArgs forwarding</li> <li><a href="f87e2b2119"><code>f87e2b2</code></a> Update builds</li> <li><a href="ab6dc32628"><code>ab6dc32</code></a> fix linting errors in /assert package</li> <li><a href="edff5a049b"><code>edff5a0</code></a> fix funtion name</li> <li>Additional commits viewable in <a href="https://github.com/stretchr/testify/compare/v1.7.0...v1.7.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
35 lines
1.3 KiB
Modula-2
35 lines
1.3 KiB
Modula-2
go 1.17
|
|
|
|
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.1
|
|
)
|
|
|
|
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.0-20210107192922-496545a6307b // indirect
|
|
)
|