From 34e983f60dc255d3da3ee1613a17cbb75ebbe45f Mon Sep 17 00:00:00 2001 From: Gautam Kumar <62495093+Gautam7352@users.noreply.github.com> Date: Thu, 2 Apr 2026 04:31:25 +0530 Subject: [PATCH 1/2] Update Echo version and fix version mismatches in go.mod --- apps/server/go.mod | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 apps/server/go.mod diff --git a/apps/server/go.mod b/apps/server/go.mod new file mode 100644 index 0000000..6ba89a1 --- /dev/null +++ b/apps/server/go.mod @@ -0,0 +1,7 @@ +module apps/server + + require ( + labstack/echo/v5 v5.1.0 + swaggo/echo-swagger v1.4.1 + golang.org/x/crypto v0.47.0 + ) From f7037e0e328b008379ae14692100b4e38754c85e Mon Sep 17 00:00:00 2001 From: Gautam Kumar <62495093+Gautam7352@users.noreply.github.com> Date: Thu, 2 Apr 2026 04:33:12 +0530 Subject: [PATCH 2/2] Updating go.mod file with new dependencies --- apps/server/go.mod | 62 +++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/apps/server/go.mod b/apps/server/go.mod index 6ba89a1..53801aa 100644 --- a/apps/server/go.mod +++ b/apps/server/go.mod @@ -1,7 +1,57 @@ -module apps/server +module github.com/coderz-space/coderz.space - require ( - labstack/echo/v5 v5.1.0 - swaggo/echo-swagger v1.4.1 - golang.org/x/crypto v0.47.0 - ) +go 1.25.0 + +require ( + github.com/go-playground/validator/v10 v10.30.1 + github.com/golang-jwt/jwt/v5 v5.3.1 + github.com/jackc/pgx/v5 v5.8.0 + github.com/joho/godotenv v1.5.1 + github.com/labstack/echo-jwt/v5 v5.0.1 + github.com/labstack/echo/v5 v5.1.0 + github.com/stretchr/testify v1.11.1 + github.com/swaggo/echo-swagger v1.4.1 + github.com/swaggo/swag v1.16.6 + go.uber.org/zap v1.27.1 + golang.org/x/crypto v0.47.0 + gopkg.in/natefinch/lumberjack.v2 v2.2.1 +) + +require ( + github.com/KyleBanks/depth v1.2.1 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/gabriel-vasile/mimetype v1.4.12 // indirect + github.com/ghodss/yaml v1.0.0 // indirect + github.com/go-openapi/jsonpointer v0.19.6 // indirect + github.com/go-openapi/jsonreference v0.20.2 // indirect + github.com/go-openapi/spec v0.20.9 // indirect + github.com/go-openapi/swag v0.22.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-20240606120523-5a60cdf6a761 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect + github.com/josharian/intern v1.0.0 // indirect + github.com/labstack/echo/v4 v4.9.0 // indirect + github.com/labstack/gommon v0.3.1 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/mailru/easyjson v0.7.7 // indirect + github.com/mattn/go-colorable v0.1.11 // indirect + github.com/mattn/go-isatty v0.0.14 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/rogpeppe/go-internal v1.14.1 // indirect + github.com/swaggo/files/v2 v2.0.0 // indirect + github.com/swaggo/swag/v2 v2.0.0-rc4 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + github.com/valyala/fasttemplate v1.2.2 // indirect + go.uber.org/multierr v1.10.0 // indirect + golang.org/x/mod v0.31.0 // indirect + golang.org/x/net v0.49.0 // indirect + golang.org/x/sync v0.19.0 // indirect + golang.org/x/sys v0.40.0 // indirect + golang.org/x/text v0.33.0 // indirect + golang.org/x/time v0.14.0 // indirect + golang.org/x/tools v0.40.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) \ No newline at end of file