30 lines
970 B
Modula-2
30 lines
970 B
Modula-2
module mailsrv
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/alecthomas/kingpin/v2 v2.3.2
|
|
github.com/go-playground/validator/v10 v10.15.3
|
|
github.com/rs/zerolog v1.29.1
|
|
github.com/stretchr/testify v1.8.2
|
|
gopkg.in/ini.v1 v1.67.0
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // 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/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // 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
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|