auth-api/go.mod

45 lines
1.6 KiB
Modula-2
Raw Permalink Normal View History

2022-01-22 15:43:33 +01:00
module gitea.larvit.se/pwrpln/auth-api
2020-12-29 13:46:58 +01:00
2024-04-06 14:42:46 +02:00
go 1.22
2020-12-29 13:46:58 +01:00
require (
2023-05-08 15:29:19 +02:00
gitea.larvit.se/pwrpln/go_log v0.3.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
2024-04-06 14:42:46 +02:00
github.com/gofiber/fiber/v2 v2.52.4
2024-02-04 06:46:48 +01:00
github.com/gofiber/swagger v1.0.0
2024-02-11 17:01:25 +01:00
github.com/google/uuid v1.6.0
2024-04-06 14:42:46 +02:00
github.com/jackc/pgx/v5 v5.5.5
2024-02-11 22:37:04 +01:00
github.com/joho/godotenv v1.5.1
2024-02-11 17:01:25 +01:00
github.com/swaggo/swag v1.16.3
2024-02-11 22:37:04 +01:00
github.com/vgarvardt/pgx-google-uuid/v5 v5.0.0
2024-04-06 14:42:46 +02:00
golang.org/x/crypto v0.22.0
2021-12-10 23:09:57 +01:00
)
require (
github.com/KyleBanks/depth v1.2.1 // indirect
2024-02-04 04:27:03 +01:00
github.com/andybalholm/brotli v1.1.0 // indirect
2024-04-06 14:42:46 +02:00
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/jsonreference v0.21.0 // indirect
github.com/go-openapi/spec v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
2021-12-10 23:09:57 +01:00
github.com/jackc/pgpassfile v1.0.0 // indirect
2024-02-04 04:27:03 +01:00
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
2024-02-11 22:37:04 +01:00
github.com/jackc/puddle/v2 v2.2.1 // indirect
2021-12-10 23:09:57 +01:00
github.com/josharian/intern v1.0.0 // indirect
2024-04-06 14:42:46 +02:00
github.com/klauspost/compress v1.17.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
2024-02-04 04:27:03 +01:00
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
2024-02-11 17:01:25 +01:00
github.com/rivo/uniseg v0.4.7 // indirect
2024-02-11 17:07:40 +01:00
github.com/swaggo/files/v2 v2.0.0 // indirect
2021-12-10 23:09:57 +01:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
2024-04-06 14:42:46 +02:00
github.com/valyala/fasthttp v1.52.0 // indirect
2021-12-10 23:09:57 +01:00
github.com/valyala/tcplisten v1.0.0 // indirect
2024-04-06 14:42:46 +02:00
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
2024-02-11 17:01:25 +01:00
golang.org/x/text v0.14.0 // indirect
2024-04-06 14:42:46 +02:00
golang.org/x/tools v0.20.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2020-12-29 13:46:58 +01:00
)