From 1c32e1497525bc6f609898f0f79bd6cc3e6d92fb Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Wed, 29 Nov 2023 02:05:38 -0500 Subject: user create/insert into users table, pgxpool defer moved to top of app, me.tmpl.html, secret hashing with argon2id, updated migrations --- go.mod | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 7ed3daf..b1d3196 100644 --- a/go.mod +++ b/go.mod @@ -5,14 +5,22 @@ go 1.21.3 require ( github.com/BurntSushi/toml v1.3.2 github.com/go-chi/chi/v5 v5.0.10 + github.com/go-playground/validator/v10 v10.16.0 + github.com/google/uuid v1.4.0 github.com/jackc/pgx/v5 v5.5.0 + golang.org/x/crypto v0.16.0 ) require ( + github.com/gabriel-vasile/mimetype v1.4.3 // 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-20221227161230-091c0ba34f0a // indirect github.com/jackc/puddle/v2 v2.2.1 // indirect - golang.org/x/crypto v0.14.0 // indirect + github.com/leodido/go-urn v1.2.4 // indirect + golang.org/x/net v0.19.0 // indirect golang.org/x/sync v0.5.0 // indirect + golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect ) -- cgit v1.2.3