legalgo-BE-go/go.mod

44 lines
1.4 KiB
Modula-2
Raw Normal View History

module legalgo-BE-go
2025-02-22 12:50:26 +08:00
go 1.24.0
require (
2025-02-22 16:15:38 +08:00
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/joho/godotenv v1.5.1
2025-02-22 16:15:38 +08:00
go.uber.org/fx v1.23.0
golang.org/x/crypto v0.34.0
gorm.io/driver/postgres v1.5.11
2025-02-22 16:15:38 +08:00
)
require (
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.7.2 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/text v0.22.0 // indirect
)
2025-02-22 16:15:38 +08:00
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-chi/chi/v5 v5.2.1
2025-02-22 16:15:38 +08:00
github.com/go-chi/cors v1.2.1
github.com/go-playground/validator/v10 v10.25.0
github.com/google/uuid v1.6.0
github.com/redis/go-redis/v9 v9.7.1
github.com/sirupsen/logrus v1.9.3
2025-02-22 12:50:26 +08:00
go.uber.org/dig v1.18.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
go.uber.org/zap v1.26.0 // indirect
2025-02-22 16:15:38 +08:00
golang.org/x/sync v0.11.0
2025-02-22 12:50:26 +08:00
golang.org/x/sys v0.30.0 // indirect
gorm.io/gorm v1.25.12
2025-02-22 12:50:26 +08:00
)