Skip to content

Commit

Permalink
go.mod: update dependencies
Browse files Browse the repository at this point in the history
Addresses #94
jmccarthy committed Sep 14, 2020
1 parent c5a1bd8 commit 4c5c189
Showing 18 changed files with 364 additions and 2,306 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@ comply
output
dist
.envrc
bindata.go
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ assets: $(THEME_SOURCES)
go install -mod=vendor github.com/containous/go-bindata/go-bindata
go install -mod=vendor github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
go-bindata-assetfs -pkg theme -prefix themes themes/...
mv bindata_assetfs.go internal/theme/themes_bindata.go
mv bindata.go internal/theme/themes_bindata.go

comply: assets $(GO_SOURCES)
@# $(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -17,10 +17,11 @@ require (
github.com/docker/go-connections v0.3.0 // indirect
github.com/docker/go-units v0.3.2 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/elazarl/go-bindata-assetfs v0.0.0-20170227122030-30f82fa23fd8
github.com/elazarl/go-bindata-assetfs v1.0.1
github.com/fatih/color v1.6.0
github.com/fatih/structs v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect
github.com/gohugoio/hugo v0.37.1
github.com/golang/protobuf v1.0.0 // indirect
github.com/google/go-github v15.0.0+incompatible
5 changes: 5 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -28,12 +28,17 @@ github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
github.com/elazarl/go-bindata-assetfs v0.0.0-20170227122030-30f82fa23fd8 h1:nlhwxV9RE03oHlCRgt4Gx8jYhoRT3k3jMgDxGhiTIuI=
github.com/elazarl/go-bindata-assetfs v0.0.0-20170227122030-30f82fa23fd8/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4=
github.com/elazarl/go-bindata-assetfs v1.0.1 h1:m0kkaHRKEu7tUIUFVwhGGGYClXvyl4RE03qmvRTNfbw=
github.com/elazarl/go-bindata-assetfs v1.0.1/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4=
github.com/fatih/color v1.6.0 h1:66qjqZk8kalYAvDRtM1AdAJQI0tj4Wrue3Eq3B3pmFU=
github.com/fatih/color v1.6.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fatih/structs v1.0.0 h1:BrX964Rv5uQ3wwS+KRUAJCBBw5PQmgJfJ6v4yly5QwU=
github.com/fatih/structs v1.0.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/go-bindata/go-bindata v1.0.0 h1:DZ34txDXWn1DyWa+vQf7V9ANc2ILTtrEjtlsdJRF26M=
github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE=
github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo=
github.com/gohugoio/hugo v0.37.1 h1:/4bxNfqZUf/CiKw2XGW4Ll6ohEkJ24sIh5/5ln8f/us=
github.com/gohugoio/hugo v0.37.1/go.mod h1:4MkH5HA+adqD/APh9l+k6XD885lVN66vUmjs1zhPUGQ=
github.com/golang/protobuf v1.0.0 h1:lsek0oXi8iFE9L+EXARyHIjU5rlWIhhTkjDz3vHhWWQ=
108 changes: 54 additions & 54 deletions internal/theme/themes_bindata.go

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions vendor/github.com/elazarl/go-bindata-assetfs/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

175 changes: 175 additions & 0 deletions vendor/github.com/elazarl/go-bindata-assetfs/assetfs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions vendor/github.com/elazarl/go-bindata-assetfs/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

332 changes: 0 additions & 332 deletions vendor/github.com/google/go-github/github/gen-accessors.go

This file was deleted.

97 changes: 0 additions & 97 deletions vendor/golang.org/x/sys/unix/mkpost.go

This file was deleted.

277 changes: 0 additions & 277 deletions vendor/golang.org/x/sys/unix/types_darwin.go

This file was deleted.

280 changes: 0 additions & 280 deletions vendor/golang.org/x/sys/unix/types_dragonfly.go

This file was deleted.

402 changes: 0 additions & 402 deletions vendor/golang.org/x/sys/unix/types_freebsd.go

This file was deleted.

270 changes: 0 additions & 270 deletions vendor/golang.org/x/sys/unix/types_netbsd.go

This file was deleted.

282 changes: 0 additions & 282 deletions vendor/golang.org/x/sys/unix/types_openbsd.go

This file was deleted.

283 changes: 0 additions & 283 deletions vendor/golang.org/x/sys/unix/types_solaris.go

This file was deleted.

21 changes: 11 additions & 10 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -10,30 +10,30 @@ github.com/andygrunwald/go-jira
# github.com/chzyer/readline v0.0.0-20171208011716-f6d7a1f6fbf3
github.com/chzyer/readline
# github.com/containous/go-bindata v1.0.0
github.com/containous/go-bindata/go-bindata
github.com/containous/go-bindata
github.com/containous/go-bindata/go-bindata
# github.com/davecgh/go-spew v1.1.0
github.com/davecgh/go-spew/spew
# github.com/docker/distribution v2.6.2+incompatible
github.com/docker/distribution/reference
github.com/docker/distribution/digest
github.com/docker/distribution/reference
# github.com/docker/docker v1.13.1
github.com/docker/docker/api/types
github.com/docker/docker/client
github.com/docker/docker/api/types/blkiodev
github.com/docker/docker/api/types/container
github.com/docker/docker/api/types/events
github.com/docker/docker/api/types/filters
github.com/docker/docker/api/types/mount
github.com/docker/docker/api/types/network
github.com/docker/docker/api/types/reference
github.com/docker/docker/api/types/registry
github.com/docker/docker/api/types/strslice
github.com/docker/docker/api/types/swarm
github.com/docker/docker/api/types/events
github.com/docker/docker/api/types/reference
github.com/docker/docker/api/types/time
github.com/docker/docker/api/types/versions
github.com/docker/docker/api/types/volume
github.com/docker/docker/client
github.com/docker/docker/pkg/tlsconfig
github.com/docker/docker/api/types/blkiodev
github.com/docker/docker/api/types/strslice
# github.com/docker/go-connections v0.3.0
github.com/docker/go-connections/nat
github.com/docker/go-connections/sockets
@@ -42,7 +42,8 @@ github.com/docker/go-connections/tlsconfig
github.com/docker/go-units
# github.com/dustin/go-humanize v1.0.0
github.com/dustin/go-humanize
# github.com/elazarl/go-bindata-assetfs v0.0.0-20170227122030-30f82fa23fd8
# github.com/elazarl/go-bindata-assetfs v1.0.1
github.com/elazarl/go-bindata-assetfs
github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
# github.com/fatih/color v1.6.0
github.com/fatih/color
@@ -111,13 +112,13 @@ golang.org/x/oauth2/internal
golang.org/x/sys/unix
golang.org/x/sys/windows
# google.golang.org/appengine v1.0.0
google.golang.org/appengine/urlfetch
google.golang.org/appengine/internal
google.golang.org/appengine/internal/urlfetch
google.golang.org/appengine/internal/base
google.golang.org/appengine/internal/datastore
google.golang.org/appengine/internal/log
google.golang.org/appengine/internal/remote_api
google.golang.org/appengine/internal/urlfetch
google.golang.org/appengine/urlfetch
# gopkg.in/blang/semver.v1 v1.1.0
gopkg.in/blang/semver.v1
# gopkg.in/yaml.v2 v2.1.1

0 comments on commit 4c5c189

Please sign in to comment.