mirror of
https://github.com/axllent/mailpit.git
synced 2026-06-28 06:56:06 +00:00
73 lines
2.9 KiB
Modula-2
73 lines
2.9 KiB
Modula-2
module github.com/axllent/mailpit
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.23.2
|
|
|
|
// https://github.com/jaytaylor/html2text/issues/67
|
|
replace github.com/olekukonko/tablewriter => github.com/olekukonko/tablewriter v0.0.5
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.3
|
|
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
|
|
github.com/axllent/semver v0.0.1
|
|
github.com/goccy/go-yaml v1.18.0
|
|
github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/jhillyerd/enmime/v2 v2.1.0
|
|
github.com/klauspost/compress v1.18.0
|
|
github.com/kovidgoyal/imaging v1.6.4
|
|
github.com/leporo/sqlf v1.4.0
|
|
github.com/lithammer/shortuuid/v4 v4.2.0
|
|
github.com/mneis/go-telnet v0.0.0-20221017141824-6f643e477c62
|
|
github.com/prometheus/client_golang v1.22.0
|
|
github.com/rqlite/gorqlite v0.0.0-20250609141355-ac86a4a1c9a8
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/spf13/cobra v1.9.1
|
|
github.com/spf13/pflag v1.0.6
|
|
github.com/tg123/go-htpasswd v1.2.4
|
|
github.com/vanng822/go-premailer v1.25.0
|
|
golang.org/x/crypto v0.39.0
|
|
golang.org/x/net v0.41.0
|
|
golang.org/x/text v0.26.0
|
|
golang.org/x/time v0.12.0
|
|
modernc.org/sqlite v1.38.0
|
|
)
|
|
|
|
require (
|
|
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5 // indirect
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gorilla/css v1.0.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/olekukonko/tablewriter v1.0.7 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/common v0.64.0 // indirect
|
|
github.com/prometheus/procfs v0.16.1 // indirect
|
|
github.com/reiver/go-oi v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/vanng822/css v1.0.1 // indirect
|
|
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476 // indirect
|
|
golang.org/x/image v0.28.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
modernc.org/libc v1.65.10 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
)
|