Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: son trinh <trinhleson2000@gmail.com> Co-authored-by: marbar3778 <marbar3778@yahoo.com> Co-authored-by: Marko <marko@baricevic.me>
33 lines
1.0 KiB
Modula-2
33 lines
1.0 KiB
Modula-2
module cosmossdk.io/collections
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
cosmossdk.io/core v0.12.0
|
|
cosmossdk.io/core/testing v0.0.0-00010101000000-000000000000
|
|
github.com/stretchr/testify v1.9.0
|
|
pgregory.net/rapid v1.1.0
|
|
)
|
|
|
|
require (
|
|
github.com/cosmos/gogoproto v1.5.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
github.com/tidwall/btree v1.7.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect
|
|
google.golang.org/grpc v1.64.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
cosmossdk.io/core => ../core
|
|
cosmossdk.io/core/testing => ../core/testing
|
|
)
|