mirror of
https://github.com/axllent/mailpit.git
synced 2024-12-28 23:06:43 +02:00
64 lines
2.6 KiB
Modula-2
64 lines
2.6 KiB
Modula-2
module github.com/axllent/mailpit
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/GuiaBolso/darwin v0.0.0-20191218124601-fd6d2aa3d244
|
|
github.com/axllent/semver v0.0.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/jhillyerd/enmime v0.10.0
|
|
github.com/k3a/html2text v1.0.8
|
|
github.com/klauspost/compress v1.15.9
|
|
github.com/leporo/sqlf v1.3.0
|
|
github.com/mattn/go-shellwords v1.0.12
|
|
github.com/mhale/smtpd v0.8.0
|
|
github.com/satori/go.uuid v1.2.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/cobra v1.5.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/tg123/go-htpasswd v1.2.0
|
|
golang.org/x/text v0.3.7
|
|
modernc.org/sqlite v1.18.1
|
|
)
|
|
|
|
require (
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0 // indirect
|
|
github.com/GehirnInc/crypt v0.0.0-20200316065508-bb7000b8a962 // indirect
|
|
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
|
|
github.com/cznic/ql v1.2.0 // indirect
|
|
github.com/disintegration/imaging v1.6.2 // indirect
|
|
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
|
github.com/rivo/uniseg v0.3.4 // indirect
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
github.com/stretchr/testify v1.7.2 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d // indirect
|
|
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
|
|
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect
|
|
golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
|
|
golang.org/x/tools v0.1.12 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
|
modernc.org/cc/v3 v3.36.3 // indirect
|
|
modernc.org/ccgo/v3 v3.16.9 // indirect
|
|
modernc.org/libc v1.17.1 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.2.1 // indirect
|
|
modernc.org/opt v0.1.3 // indirect
|
|
modernc.org/strutil v1.1.3 // indirect
|
|
modernc.org/token v1.0.1 // indirect
|
|
)
|