Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex | Interchain Labs <alex@skip.money>
66 lines
2.5 KiB
Modula-2
66 lines
2.5 KiB
Modula-2
module cosmossdk.io/store
|
|
|
|
go 1.23.4
|
|
|
|
require (
|
|
cosmossdk.io/core v1.0.0
|
|
cosmossdk.io/core/testing v0.0.1
|
|
cosmossdk.io/errors v1.0.1
|
|
cosmossdk.io/log v1.5.0
|
|
cosmossdk.io/math v1.5.0
|
|
github.com/cometbft/cometbft v1.0.0
|
|
github.com/cometbft/cometbft/api v1.0.0
|
|
github.com/cosmos/cosmos-proto v1.0.0-beta.5
|
|
github.com/cosmos/gogoproto v1.7.0
|
|
github.com/cosmos/iavl v1.3.5
|
|
github.com/cosmos/ics23/go v0.11.0
|
|
github.com/hashicorp/go-hclog v1.6.3
|
|
github.com/hashicorp/go-metrics v0.5.4
|
|
github.com/hashicorp/go-plugin v1.6.2
|
|
github.com/hashicorp/golang-lru v1.0.2
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/tidwall/btree v1.7.0
|
|
go.uber.org/mock v0.5.0
|
|
google.golang.org/grpc v1.69.4
|
|
google.golang.org/protobuf v1.36.2
|
|
gotest.tools/v3 v3.5.1
|
|
)
|
|
|
|
require (
|
|
cosmossdk.io/schema v1.0.0 // indirect
|
|
github.com/bytedance/sonic v1.12.6 // indirect
|
|
github.com/bytedance/sonic/loader v0.2.1 // indirect
|
|
github.com/cloudwego/base64x v0.1.4 // indirect
|
|
github.com/cloudwego/iasm v0.2.0 // indirect
|
|
github.com/cockroachdb/apd/v3 v3.2.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/emicklei/dot v1.6.2 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
github.com/hashicorp/go-uuid v1.0.1 // indirect
|
|
github.com/hashicorp/yamux v0.1.2 // indirect
|
|
github.com/jhump/protoreflect v1.17.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/oklog/run v1.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rs/zerolog v1.33.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
golang.org/x/arch v0.12.0 // indirect
|
|
golang.org/x/crypto v0.32.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|