pki/go.mod

42 lines
1.4 KiB
Modula-2
Raw Normal View History

2020-11-25 20:36:07 +01:00
module git.paulbsd.com/paulbsd/pki
2023-03-17 13:20:20 +01:00
go 1.20
2020-11-25 20:36:07 +01:00
require (
2023-03-17 13:20:20 +01:00
github.com/go-acme/lego/v4 v4.10.2
2021-08-30 20:04:15 +02:00
github.com/golang/snappy v0.0.4 // indirect
2021-04-07 10:58:21 +02:00
github.com/google/go-cmp v0.5.5 // indirect
2023-03-17 13:20:20 +01:00
github.com/labstack/echo/v4 v4.10.2
2022-11-02 17:49:03 +01:00
github.com/lib/pq v1.10.7
2023-03-17 13:20:20 +01:00
github.com/miekg/dns v1.1.52 // 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
2023-03-17 13:20:20 +01:00
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
2022-12-17 17:59:28 +01:00
golang.org/x/time v0.3.0 // indirect
2022-11-02 17:49:03 +01:00
gopkg.in/ini.v1 v1.67.0
xorm.io/builder v0.3.12 // indirect
xorm.io/xorm v1.3.2
2021-08-30 20:04:15 +02:00
)
require (
2022-12-17 17:59:28 +01:00
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
2023-03-17 13:20:20 +01:00
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/goccy/go-json v0.10.1 // 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
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
2023-03-17 13:20:20 +01:00
github.com/mattn/go-isatty v0.0.17 // 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
github.com/ovh/go-ovh v1.3.0 // 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
2023-03-17 13:20:20 +01:00
golang.org/x/mod v0.9.0 // indirect
golang.org/x/tools v0.7.0 // indirect
2020-11-25 20:36:07 +01:00
)