|
| 1 | +module github.com/tufstraka/Locsafe/api |
| 2 | + |
| 3 | +go 1.21 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/gin-contrib/cors v1.5.0 |
| 7 | + github.com/gin-gonic/gin v1.9.1 |
| 8 | + github.com/golang-jwt/jwt/v5 v5.2.0 |
| 9 | + github.com/google/uuid v1.5.0 |
| 10 | + github.com/joho/godotenv v1.5.1 |
| 11 | + github.com/lib/pq v1.10.9 |
| 12 | + golang.org/x/crypto v0.19.0 |
| 13 | + gorm.io/driver/postgres v1.5.4 |
| 14 | + gorm.io/gorm v1.25.5 |
| 15 | +) |
| 16 | + |
| 17 | +require ( |
| 18 | + github.com/bytedance/sonic v1.10.1 // indirect |
| 19 | + github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect |
| 20 | + github.com/chenzhuoyu/iasm v0.9.0 // indirect |
| 21 | + github.com/gabriel-vasile/mimetype v1.4.2 // indirect |
| 22 | + github.com/gin-contrib/sse v0.1.0 // indirect |
| 23 | + github.com/go-playground/locales v0.14.1 // indirect |
| 24 | + github.com/go-playground/universal-translator v0.18.1 // indirect |
| 25 | + github.com/go-playground/validator/v10 v10.15.5 // indirect |
| 26 | + github.com/goccy/go-json v0.10.2 // indirect |
| 27 | + github.com/jackc/pgpassfile v1.0.0 // indirect |
| 28 | + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect |
| 29 | + github.com/jackc/pgx/v5 v5.4.3 // indirect |
| 30 | + github.com/jinzhu/inflection v1.0.0 // indirect |
| 31 | + github.com/jinzhu/now v1.1.5 // indirect |
| 32 | + github.com/json-iterator/go v1.1.12 // indirect |
| 33 | + github.com/klauspost/cpuid/v2 v2.2.5 // indirect |
| 34 | + github.com/kr/text v0.2.0 // indirect |
| 35 | + github.com/leodido/go-urn v1.2.4 // indirect |
| 36 | + github.com/mattn/go-isatty v0.0.19 // indirect |
| 37 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 38 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 39 | + github.com/pelletier/go-toml/v2 v2.1.0 // indirect |
| 40 | + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect |
| 41 | + github.com/ugorji/go/codec v1.2.11 // indirect |
| 42 | + golang.org/x/arch v0.5.0 // indirect |
| 43 | + golang.org/x/net v0.16.0 // indirect |
| 44 | + golang.org/x/sys v0.17.0 // indirect |
| 45 | + golang.org/x/text v0.14.0 // indirect |
| 46 | + google.golang.org/protobuf v1.31.0 // indirect |
| 47 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 48 | +) |
0 commit comments