diff options
| author | Bobby <[email protected]> | 2025-12-23 18:36:26 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-12-23 18:36:26 +0530 |
| commit | 17b250cd4722ba281343b35b85fb645ffefedcf8 (patch) | |
| tree | 7345787eaeba82799ac9f50562a377ed953e2c2a /go.mod | |
| parent | 5f691c04754ffd459b2ba0e434dc17585ba7c66c (diff) | |
| download | lain-17b250cd4722ba281343b35b85fb645ffefedcf8.tar.xz lain-17b250cd4722ba281343b35b85fb645ffefedcf8.zip | |
email model and syncing and showing emails
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -4,11 +4,13 @@ go 1.25.5 require ( github.com/emersion/go-imap v1.2.1 + github.com/emersion/go-message v0.15.0 github.com/flosch/pongo2/v6 v6.0.0 github.com/gofiber/fiber/v2 v2.52.10 github.com/gofiber/storage/postgres/v3 v3.3.1 github.com/gofiber/template/django/v3 v3.1.14 github.com/joho/godotenv v1.5.1 + github.com/minio/minio-go/v7 v7.0.97 gorm.io/datatypes v1.2.7 gorm.io/driver/postgres v1.6.0 gorm.io/gorm v1.31.1 @@ -17,7 +19,10 @@ require ( require ( filippo.io/edwards25519 v1.1.0 // indirect github.com/andybalholm/brotli v1.1.0 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 // indirect + github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect + github.com/go-ini/ini v1.67.0 // indirect github.com/go-sql-driver/mysql v1.8.1 // indirect github.com/gofiber/template v1.8.3 // indirect github.com/gofiber/utils v1.1.0 // indirect @@ -29,17 +34,26 @@ require ( github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/klauspost/compress v1.18.1 // indirect + github.com/klauspost/cpuid/v2 v2.2.11 // indirect + github.com/klauspost/crc32 v1.3.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-runewidth v0.0.16 // indirect + github.com/minio/crc64nvme v1.1.0 // indirect + github.com/minio/md5-simd v1.1.2 // indirect + github.com/philhofer/fwd v1.2.0 // indirect github.com/rivo/uniseg v0.2.0 // indirect github.com/rogpeppe/go-internal v1.14.1 // indirect + github.com/rs/xid v1.6.0 // indirect + github.com/tinylib/msgp v1.3.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.51.0 // indirect github.com/valyala/tcplisten v1.0.0 // indirect golang.org/x/crypto v0.45.0 // indirect + golang.org/x/net v0.47.0 // indirect golang.org/x/sync v0.18.0 // indirect golang.org/x/sys v0.38.0 // indirect golang.org/x/text v0.31.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect gorm.io/driver/mysql v1.5.6 // indirect ) |
