Skip to content

Commit

Permalink
Group indirect dependencies (cosmos#2079) (cosmos#2084)
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

(cherry picked from commit 2355afc)

Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Damian Nolan <[email protected]>
  • Loading branch information
3 people authored Aug 24, 2022
1 parent 0bf992d commit cd5ceaa
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 cd5ceaa

Please sign in to comment.