60 lines
2.4 KiB
Modula-2
60 lines
2.4 KiB
Modula-2
module github.com/cosmos/cosmos-sdk/orm
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
cosmossdk.io/api v0.2.1
|
|
cosmossdk.io/errors v1.0.0-beta.7
|
|
github.com/cosmos/cosmos-proto v1.0.0-alpha7
|
|
github.com/golang/mock v1.6.0
|
|
github.com/google/go-cmp v0.5.9
|
|
github.com/iancoleman/strcase v0.2.0
|
|
github.com/regen-network/gocuke v0.6.2
|
|
github.com/stretchr/testify v1.8.0
|
|
github.com/tendermint/tm-db v0.6.7
|
|
golang.org/x/exp v0.0.0-20220916125017-b168a2c6b86b
|
|
google.golang.org/grpc v1.49.0
|
|
google.golang.org/protobuf v1.28.1
|
|
gotest.tools/v3 v3.3.0
|
|
pgregory.net/rapid v0.5.3
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/participle/v2 v2.0.0-alpha7 // indirect
|
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/cockroachdb/apd/v3 v3.1.0 // indirect
|
|
github.com/cosmos/gogoproto v1.4.2 // indirect
|
|
github.com/cosmos/gorocksdb v1.2.0 // indirect
|
|
github.com/cucumber/common/gherkin/go/v22 v22.0.0 // indirect
|
|
github.com/cucumber/common/messages/go/v17 v17.1.1 // 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.4 // indirect
|
|
github.com/gofrs/uuid v4.2.0+incompatible // 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/jmhodges/levigo v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.15.9 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/lib/pq v1.10.6 // indirect
|
|
github.com/onsi/ginkgo v1.16.4 // indirect
|
|
github.com/onsi/gomega v1.20.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
|
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
|
go.etcd.io/bbolt v1.3.6 // indirect
|
|
golang.org/x/net v0.0.0-20220726230323-06994584191e // indirect
|
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|