-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
48 lines (44 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
module github.com/tgulacsi/imapclient
require (
github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2
github.com/UNO-SOFT/filecache v0.4.0
github.com/UNO-SOFT/zlog v0.8.5
github.com/dchest/siphash v1.2.3
github.com/emersion/go-imap v1.2.1
github.com/emersion/go-imap/v2 v2.0.0-beta.5
github.com/emersion/go-message v0.18.2
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6
github.com/google/renameio/v2 v2.0.0
github.com/hashicorp/go-azure-sdk v0.20240125.1100331
github.com/manicminer/hamilton v0.72.0
github.com/peterbourgon/ff/v3 v3.4.0
github.com/tgulacsi/go v0.28.1
github.com/tgulacsi/oauth2client v0.1.0
go.etcd.io/bbolt v1.4.0
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
golang.org/x/net v0.38.0
golang.org/x/oauth2 v0.29.0
golang.org/x/sync v0.13.0
golang.org/x/text v0.24.0
golang.org/x/time v0.11.0
)
require (
github.com/dgryski/go-linebreak v0.0.0-20180812204043-d8f37254e7d3 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/go-azure-helpers v0.72.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
golang.org/x/crypto v0.37.0 // indirect
golang.org/x/sys v0.32.0 // indirect
golang.org/x/term v0.31.0 // indirect
software.sslmate.com/src/go-pkcs12 v0.5.0 // indirect
)
// The last version supporting Xoauth2: github.com/emersion/go-sasl v0.0.0-20200509202850-4132e15e133d
go 1.24.1