aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2024-01-22 00:35:11 -0500
committerAlexander Kavon <me+git@alexkavon.com>2024-01-22 00:35:11 -0500
commit857a7dd47a42faeee4c91e8089905b2ba7135bb7 (patch)
treeb5ef9b9bae1eb26542eec898ee28591ae6d4942b /go.mod
parentbc47e526e962c1c5bce850de312c6e5fbaf16458 (diff)
updated migrations (added rollback for function), lowered varchar to 255 length, updated packages, make dev, make halt commands for container management
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod24
1 files changed, 24 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index b1d3196..60789bc 100644
--- a/go.mod
+++ b/go.mod
@@ -4,23 +4,47 @@ go 1.21.3
require (
github.com/BurntSushi/toml v1.3.2
+ github.com/friendsofgo/errors v0.9.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
+ github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
+ github.com/lib/pq v1.10.6
+ github.com/spf13/viper v1.12.0
+ github.com/volatiletech/randomize v0.0.1
+ github.com/volatiletech/sqlboiler/v4 v4.16.1
+ github.com/volatiletech/strmangle v0.0.6
golang.org/x/crypto v0.16.0
)
require (
+ github.com/fsnotify/fsnotify v1.5.4 // indirect
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/gofrs/uuid v4.2.0+incompatible // indirect
+ github.com/hashicorp/hcl v1.0.0 // 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
github.com/leodido/go-urn v1.2.4 // indirect
+ github.com/magiconair/properties v1.8.6 // indirect
+ github.com/mitchellh/mapstructure v1.5.0 // indirect
+ github.com/pelletier/go-toml v1.9.5 // indirect
+ github.com/pelletier/go-toml/v2 v2.0.5 // indirect
+ github.com/spf13/afero v1.9.2 // indirect
+ github.com/spf13/cast v1.5.0 // indirect
+ github.com/spf13/jwalterweatherman v1.1.0 // indirect
+ github.com/spf13/pflag v1.0.5 // indirect
+ github.com/subosito/gotenv v1.4.1 // indirect
+ github.com/volatiletech/inflect v0.0.1 // 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
+ golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
+ gopkg.in/ini.v1 v1.67.0 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
)