-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
28 lines (25 loc) · 853 Bytes
/
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
module mailman
go 1.21.3
require (
github.com/abbot/go-http-auth v0.4.0
github.com/boltdb/bolt v1.3.1
github.com/briandowns/spinner v1.23.0
github.com/fatih/color v1.16.0
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.1
github.com/rakyll/statik v0.1.7
github.com/russross/blackfriday/v2 v2.1.0
github.com/sirupsen/logrus v1.9.3
github.com/urfave/cli v1.22.14
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
)