mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 13:06:40 +00:00
It currently only supports outputting a shields.io JSON badge for the total number of downloads, calculated by iterating over all pages of GitHub Releases and counting download totals. Shields.io's own release downloads badge only checks downloads counts from the first page (100 releases).
23 lines
741 B
Modula-2
23 lines
741 B
Modula-2
module emacs-builds-meta
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/google/go-github v17.0.0+incompatible
|
|
github.com/urfave/cli/v2 v2.3.0
|
|
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
|
|
github.com/golang/protobuf v1.4.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/go-querystring v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.0.1 // indirect
|
|
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
|
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
|
|
google.golang.org/appengine v1.6.6 // indirect
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
|
)
|