pki/go.mod

43 lines
1.5 KiB
Modula-2
Raw Normal View History

2020-11-25 20:36:07 +01:00
module git.paulbsd.com/paulbsd/pki
2024-04-19 16:50:48 +02:00
go 1.22
2020-11-25 20:36:07 +01:00
require (
2024-04-19 16:50:48 +02:00
github.com/go-acme/lego/v4 v4.16.1
2021-08-30 20:04:15 +02:00
github.com/golang/snappy v0.0.4 // indirect
2024-04-19 16:50:48 +02:00
github.com/labstack/echo/v4 v4.12.0
2023-05-17 13:29:06 +02:00
github.com/lib/pq v1.10.9
2024-04-19 16:50:48 +02:00
github.com/miekg/dns v1.1.59 // indirect
2021-04-07 10:58:21 +02:00
github.com/onsi/ginkgo v1.16.0 // indirect
github.com/onsi/gomega v1.11.0 // indirect
2024-04-19 16:50:48 +02:00
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
2022-11-02 17:49:03 +01:00
gopkg.in/ini.v1 v1.67.0
2023-10-01 12:07:22 +02:00
xorm.io/builder v0.3.13 // indirect
2024-04-19 16:50:48 +02:00
xorm.io/xorm v1.3.9
2021-08-30 20:04:15 +02:00
)
require (
2024-04-19 16:50:48 +02:00
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
2023-05-17 13:29:06 +02:00
github.com/goccy/go-json v0.10.2 // indirect
2021-08-30 20:04:15 +02:00
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
2022-11-02 17:49:03 +01:00
github.com/json-iterator/go v1.1.12 // indirect
2024-04-19 16:50:48 +02:00
github.com/labstack/gommon v0.4.2 // indirect
2022-11-02 17:49:03 +01:00
github.com/mattn/go-colorable v0.1.13 // indirect
2024-04-19 16:50:48 +02:00
github.com/mattn/go-isatty v0.0.20 // indirect
2021-08-30 20:04:15 +02:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2022-11-02 17:49:03 +01:00
github.com/modern-go/reflect2 v1.0.2 // indirect
2024-04-19 16:50:48 +02:00
github.com/ovh/go-ovh v1.5.1 // indirect
2021-08-30 20:04:15 +02:00
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
2022-11-02 17:49:03 +01:00
github.com/valyala/fasttemplate v1.2.2 // indirect
2024-04-19 16:50:48 +02:00
golang.org/x/mod v0.17.0 // indirect
golang.org/x/oauth2 v0.19.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/tools v0.20.0 // indirect
2020-11-25 20:36:07 +01:00
)