vmail/go.mod

42 lines
1.6 KiB
Modula-2
Raw Normal View History

2020-07-07 00:13:18 +02:00
module git.paulbsd.com/paulbsd/vmail
2021-08-30 19:56:54 +02:00
go 1.17
2020-07-07 00:13:18 +02:00
require (
2021-08-30 19:56:54 +02:00
github.com/golang/snappy v0.0.4 // indirect
github.com/labstack/echo/v4 v4.6.1
github.com/lib/pq v1.10.4
github.com/mattn/go-colorable v0.1.12 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
2021-08-30 19:56:54 +02:00
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
gopkg.in/ini.v1 v1.66.2
2021-04-07 11:35:16 +02:00
xorm.io/builder v0.3.9 // indirect
xorm.io/xorm v1.2.5
2021-08-30 19:56:54 +02:00
)
require github.com/gobuffalo/packr/v2 v2.8.3
2021-08-30 19:56:54 +02:00
require (
github.com/gobuffalo/logger v1.0.6 // indirect
github.com/gobuffalo/packd v1.0.1 // indirect
github.com/goccy/go-json v0.8.1 // indirect
2021-08-30 19:56:54 +02:00
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/karrick/godirwalk v1.16.1 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/markbates/errx v1.1.0 // indirect
github.com/markbates/oncer v1.0.0 // indirect
github.com/markbates/safe v1.0.1 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
2021-08-30 19:56:54 +02:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
2021-08-30 19:56:54 +02:00
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
2020-07-07 00:13:18 +02:00
)