summaryrefslogtreecommitdiff
path: root/server/go.mod
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-06-23 13:55:42 -0700
committerMichael Hunteman <michael@huntm.net>2024-06-23 13:55:42 -0700
commit07752babb4e692452e1cd7f2133c4d8dde1b3b1c (patch)
treeb3be7698f1af43f83bccd3bbbf6e19cd03532f1b /server/go.mod
parent4bf5d1a620dfe96ea9593d44cfcd0f142fcdec61 (diff)
Authenticate UI users
Diffstat (limited to 'server/go.mod')
-rw-r--r--server/go.mod10
1 files changed, 7 insertions, 3 deletions
diff --git a/server/go.mod b/server/go.mod
index 3ab08ef..49af49e 100644
--- a/server/go.mod
+++ b/server/go.mod
@@ -2,13 +2,17 @@ module git.huntm.net/wedding/server
go 1.22.2
-require github.com/jackc/pgx/v5 v5.5.5
+require (
+ github.com/golang-jwt/jwt/v5 v5.2.1
+ github.com/jackc/pgx/v5 v5.5.5
+)
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
- github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
+ github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
+ github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.23.0 // indirect
- golang.org/x/sync v0.1.0 // indirect
+ golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.15.0 // indirect
)