* go workspaces * tidy * catch all 11 modules * go.mod no longer replaces modules in the sdk * correct ics23 import * indirect in indirect list * fix cosmovisor
40 lines
1.6 KiB
Modula-2
40 lines
1.6 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.8.0
|
|
)
|
|
|
|
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/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // 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/google/go-cmp v0.5.8 // indirect
|
|
github.com/klauspost/compress v1.15.1 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.8.1 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/net v0.0.0-20220617184016-355a448f1bc9 // indirect
|
|
golang.org/x/sys v0.0.0-20220702020025-31831981b65f // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|