Files
emacs-builds/go.mod
Jim Myhrberg cc2e1a8729 fix(badge/downloads): fix issues with total download counts
Excluded patterns had a bug where they basically did not work. This
means total downloads were inflated by also counting downloads for all
sha256 files.

Also the first 1000 limit when listing repository releases seems to no
loner be a thing, so we can iterate over all pages.

And finally, implement a caching mechanism so we can keep counting
releases in case they are removed, or the first 1000 releases limit is
enabled again in GitHub's API.
2023-11-24 20:35:36 +00:00

22 lines
627 B
Modula-2

module emacs-builds-meta
go 1.21
require (
github.com/dustin/go-humanize v1.0.1
github.com/google/go-github v17.0.0+incompatible
github.com/urfave/cli/v2 v2.25.7
golang.org/x/oauth2 v0.10.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/net v0.12.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)