-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
634db7d
commit d93dcbb
Showing
3 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,54 @@ | ||
module github.com/lithictech/webhookdb-cli | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/MichaelMure/go-term-markdown v0.1.4 | ||
github.com/alecthomas/chroma v0.8.2 // indirect | ||
github.com/blang/semver v3.5.1+incompatible | ||
github.com/getsentry/sentry-go v0.12.0 | ||
github.com/go-resty/resty/v2 v2.6.0 | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/joho/godotenv v1.3.0 | ||
github.com/lithictech/go-aperitif v0.0.0-20201008180713-efd6b162b762 | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 | ||
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/pkg/browser v0.0.0-20210706143420-7d21f8c997e2 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rhysd/go-github-selfupdate v1.2.3 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/urfave/cli/v2 v2.3.1-0.20220217022915-81cb783759cd | ||
) | ||
|
||
require ( | ||
github.com/MichaelMure/go-term-text v0.3.1 // indirect | ||
github.com/alecthomas/chroma v0.8.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect | ||
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect | ||
github.com/disintegration/imaging v1.6.2 // indirect | ||
github.com/dlclark/regexp2 v1.2.0 // indirect | ||
github.com/eliukblau/pixterm/pkg/ansimage v0.0.0-20191210081756-9fb6cf8c2f75 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/gomarkdown/markdown v0.0.0-20191123064959-2c17d62f5098 // indirect | ||
github.com/google/go-github/v30 v30.1.0 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf // indirect | ||
github.com/kyokomi/emoji/v2 v2.2.8 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/tcnksm/go-gitconfig v0.1.2 // indirect | ||
github.com/ulikunitz/xz v0.5.9 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/image v0.0.0-20191206065243-da761ea9ff43 // indirect | ||
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed // indirect | ||
google.golang.org/appengine v1.6.6 // indirect | ||
google.golang.org/protobuf v1.23.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |