2023-08-17 11:22:46 +00:00
|
|
|
module github.com/thegeeklab/wp-github-comment
|
2020-09-19 22:00:34 +00:00
|
|
|
|
2023-08-19 12:52:41 +00:00
|
|
|
go 1.21
|
2020-09-19 22:00:34 +00:00
|
|
|
|
|
|
|
require (
|
2023-12-04 08:01:07 +00:00
|
|
|
github.com/google/go-github/v57 v57.0.0
|
2023-09-27 11:45:26 +00:00
|
|
|
github.com/rs/zerolog v1.31.0
|
2024-01-03 20:24:43 +00:00
|
|
|
github.com/thegeeklab/wp-plugin-go v1.5.0
|
2024-01-01 15:21:30 +00:00
|
|
|
github.com/urfave/cli/v2 v2.27.1
|
2023-11-28 08:47:15 +00:00
|
|
|
golang.org/x/oauth2 v0.15.0
|
2022-03-30 20:41:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-05-03 20:48:03 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2023-07-06 19:29:00 +00:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2023-08-17 11:22:46 +00:00
|
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
2023-09-27 11:45:26 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-05-29 12:06:59 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2023-11-28 08:47:15 +00:00
|
|
|
golang.org/x/net v0.19.0 // indirect
|
|
|
|
golang.org/x/sys v0.15.0 // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-07-06 19:29:00 +00:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2020-09-19 22:00:34 +00:00
|
|
|
)
|