33 lines
1.1 KiB
Modula-2
33 lines
1.1 KiB
Modula-2
module github.com/benjaminbear/docker-ddns-server/dyndns
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/foolin/goview v0.3.0
|
|
github.com/go-playground/validator/v10 v10.14.0
|
|
github.com/jinzhu/gorm v1.9.16
|
|
github.com/labstack/echo/v4 v4.10.2
|
|
github.com/labstack/gommon v0.4.0
|
|
github.com/tg123/go-htpasswd v1.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/GehirnInc/crypt v0.0.0-20200316065508-bb7000b8a962 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
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
|
|
golang.org/x/time v0.3.0 // indirect
|
|
)
|