From 09940c28a1e8a25500c8d912fda563f531ae100f Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Tue, 23 Aug 2022 18:57:00 +0700 Subject: [PATCH] Group indirect dependencies (#2079) ## 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//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 2355afc9beed744a5b16f00d8a09ecf1853f1be3) --- go.mod | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/go.mod b/go.mod index ff3aff1b5e5..4dc43fcd1d1 100644 --- a/go.mod +++ b/go.mod @@ -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