0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-06-02 18:39:40 +02:00
wp-plugin-go/go.mod

33 lines
1.1 KiB
Modula-2
Raw Normal View History

2023-08-13 14:31:55 +02:00
module github.com/thegeeklab/wp-plugin-go
2019-09-07 01:34:27 +02:00
2023-08-19 15:17:54 +02:00
go 1.21
2019-09-07 01:34:27 +02:00
2019-10-11 20:34:47 +02:00
require (
github.com/Masterminds/semver/v3 v3.2.1
2023-02-08 13:42:55 +01:00
github.com/Masterminds/sprig/v3 v3.2.3
github.com/google/go-cmp v0.6.0
github.com/joho/godotenv v1.5.1
github.com/rs/zerolog v1.32.0
github.com/urfave/cli/v2 v2.27.1
golang.org/x/net v0.20.0
2022-05-03 22:03:37 +02:00
)
require (
2023-02-08 13:42:55 +01:00
github.com/Masterminds/goutils v1.1.1 // indirect
2022-05-03 22:03:37 +02:00
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2023-02-08 13:42:55 +01:00
github.com/google/uuid v1.1.1 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
2023-02-08 13:42:55 +01:00
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.0 // indirect
2022-05-03 22:03:37 +02:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
2023-02-08 13:42:55 +01:00
github.com/shopspring/decimal v1.2.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sys v0.16.0 // indirect
2019-10-11 20:34:47 +02:00
)