Skip to content

Commit

Permalink
fix: Tidy go mod. (#597)
Browse files Browse the repository at this point in the history
This commit removes the go.sum, removes indirect deps, and ran `go mod
tidy` to force a clean up of the dependencies.
  • Loading branch information
betterengineering authored Jan 25, 2023
1 parent 049aa76 commit ac125b4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 168 deletions.
23 changes: 9 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ require (
github.com/ericpauley/go-quantize v0.0.0-20200331213906-ae555eb2afa4
github.com/fatih/color v1.14.1
github.com/fsnotify/fsnotify v1.6.0
github.com/gitsight/go-vcsurl v1.0.0
github.com/go-git/go-git/v5 v5.5.2
github.com/go-playground/validator/v10 v10.11.1
github.com/google/pprof v0.0.0-20230111200839-76d1ae5aea2b
github.com/google/tink/go v1.7.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/manifoldco/promptui v0.9.0
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/nathan-osman/go-sunrise v1.1.0
github.com/newm4n/go-dfe v0.0.0-20210113055126-9d5f01722db9
Expand All @@ -36,12 +39,8 @@ require (
golang.org/x/image v0.3.0
golang.org/x/oauth2 v0.4.0
golang.org/x/sync v0.1.0
)

require (
github.com/chzyer/readline v1.5.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
golang.org/x/text v0.6.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand All @@ -52,30 +51,29 @@ require (
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/andybalholm/cascadia v1.1.0 // indirect
github.com/antchfx/xpath v1.2.2 // indirect
github.com/chzyer/readline v1.5.0 // indirect
github.com/cloudflare/circl v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/gitsight/go-vcsurl v1.0.0
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.4.0 // indirect
github.com/go-git/go-git/v5 v5.5.2
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/ianlancetaylor/demangle v0.0.0-20220517205856-0058ec4f073c // indirect
github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/manifoldco/promptui v0.9.0
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pjbgf/sha1cd v0.2.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand All @@ -92,11 +90,8 @@ require (
golang.org/x/crypto v0.3.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)
Loading

0 comments on commit ac125b4

Please sign in to comment.