2023-08-19 14:00:02 +00:00
|
|
|
module github.com/thegeeklab/wp-s3-action
|
2022-05-02 20:43:40 +00:00
|
|
|
|
2023-08-19 14:00:02 +00:00
|
|
|
go 1.21
|
2022-05-02 20:43:40 +00:00
|
|
|
|
|
|
|
require (
|
2023-12-27 10:07:16 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.49.10
|
2023-09-27 13:15:12 +00:00
|
|
|
github.com/rs/zerolog v1.31.0
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/ryanuber/go-glob v1.0.0
|
2023-12-21 12:41:42 +00:00
|
|
|
github.com/thegeeklab/wp-plugin-go v1.3.0
|
2024-01-01 15:21:23 +00:00
|
|
|
github.com/urfave/cli/v2 v2.27.1
|
2022-05-02 20:43:40 +00:00
|
|
|
)
|
2019-01-08 16:32:13 +00:00
|
|
|
|
|
|
|
require (
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2023-08-19 14:00:02 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2023-08-19 14:00:02 +00:00
|
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
2023-09-27 13:15:12 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-05-29 11:56:55 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2023-12-05 13:32:22 +00:00
|
|
|
golang.org/x/net v0.19.0 // indirect
|
|
|
|
golang.org/x/sys v0.15.0 // indirect
|
2019-01-08 16:32:13 +00:00
|
|
|
)
|