## Description Routine gofumpting. No changelog entry because no changes to how the code functions. --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
33 lines
973 B
Modula-2
33 lines
973 B
Modula-2
module cosmossdk.io/core
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
cosmossdk.io/api v0.1.0-alpha8
|
|
cosmossdk.io/depinject v1.0.0-alpha.4
|
|
github.com/cosmos/cosmos-proto v1.0.0-alpha7
|
|
google.golang.org/protobuf v1.28.0
|
|
gotest.tools/v3 v3.3.0
|
|
sigs.k8s.io/yaml v1.3.0
|
|
)
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
golang.org/x/exp v0.0.0-20220428152302-39d4317da171 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
|
|
golang.org/x/text v0.3.5 // indirect
|
|
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb // indirect
|
|
google.golang.org/grpc v1.48.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|
|
|
|
replace (
|
|
cosmossdk.io/api => ../api
|
|
cosmossdk.io/depinject => ../depinject
|
|
)
|