update dependencies and improve CORS configuration

This commit is contained in:
2025-07-28 18:41:46 -04:00
parent e292442e2c
commit f5742527f6
4 changed files with 44 additions and 14 deletions

25
go.mod
View File

@@ -1,23 +1,24 @@
module git.siteworxpro.com/gun-manager
go 1.19
go 1.24.4
toolchain go1.24.4
require (
github.com/labstack/echo/v4 v4.11.1
github.com/mattn/go-sqlite3 v1.14.17
github.com/labstack/echo/v4 v4.13.4
github.com/mattn/go-sqlite3 v1.14.29
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
)
require (
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/crypto v0.40.0 // indirect
golang.org/x/net v0.42.0 // indirect
golang.org/x/sys v0.34.0 // indirect
golang.org/x/text v0.27.0 // indirect
golang.org/x/time v0.12.0 // indirect
)