-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
37 lines (33 loc) · 1.12 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
32
33
34
35
36
37
module github.com/happycakefriends/certainly
go 1.21.3
require (
github.com/caddyserver/certmagic v0.21.3
github.com/emersion/go-message v0.18.0
github.com/mholt/acmez/v2 v2.0.1
)
require (
github.com/caddyserver/zerossl v0.1.3 // indirect
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 // indirect
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
golang.org/x/sync v0.7.0 // indirect
)
require (
github.com/BurntSushi/toml v1.3.2
github.com/emersion/go-imap/v2 v2.0.0-beta.2
github.com/google/uuid v1.6.0
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/libdns/libdns v0.2.2 // indirect
github.com/mhale/smtpd v0.8.2
github.com/miekg/dns v1.1.61
github.com/slack-go/slack v0.12.5
github.com/zeebo/blake3 v0.2.3 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0
golang.org/x/crypto v0.25.0
golang.org/x/mod v0.19.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.23.0 // indirect
)