Skip to content

Commit

Permalink
Group indirect dependencies (cosmos#2079)
Browse files Browse the repository at this point in the history
## Description

This is a teeny PR that properly groups indirect dependencies in go.mod

---

Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.

- [ ] Targeted PR against correct branch (see [CONTRIBUTING.md](https://github.com/cosmos/ibc-go/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
- [ ] Code follows the [module structure standards](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules/structure.md).
- [ ] Wrote unit and integration [tests](https://github.com/cosmos/ibc-go/blob/master/CONTRIBUTING.md#testing)
- [ ] Updated relevant documentation (`docs/`) or specification (`x/<module>/spec/`)
- [ ] Added relevant `godoc` [comments](https://blog.golang.org/godoc-documenting-go-code).
- [ ] Added a relevant changelog entry to the `Unreleased` section in `CHANGELOG.md`
- [ ] Re-reviewed `Files changed` in the Github PR explorer
- [ ] Review `Codecov Report` in the comment section below once CI passes
  • Loading branch information
faddat authored Aug 23, 2022
1 parent da6315a commit 2355afc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ require (
gopkg.in/yaml.v2 v2.4.0
)

require github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266 // indirect

require (
github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266 // indirect
cloud.google.com/go v0.100.2 // indirect
cloud.google.com/go/compute v1.6.1 // indirect
cloud.google.com/go/iam v0.3.0 // indirect
Expand Down

0 comments on commit 2355afc

Please sign in to comment.