-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
31 lines (26 loc) · 1.02 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module email_router
go 1.23.0
toolchain go1.24.1
require gopkg.in/yaml.v2 v2.4.0
require (
blitiri.com.ar/go/spf v1.5.1
github.com/google/uuid v1.6.0
github.com/jhillyerd/enmime v1.3.0
github.com/sirupsen/logrus v1.9.3
github.com/toorop/go-dkim v0.0.0-20250226130143-9025cce95817
github.com/yumusb/go-smtp v0.0.0-20241013125232-63ad8b4f888a
)
require (
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 // indirect
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
golang.org/x/net v0.36.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
)