diff options
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -1,16 +1,20 @@ -module github.com/justsaumit/go-fic-api +module github.com/justsaumit/go-fis-api -go 1.21.0 +go 1.21.4 + +require ( + github.com/labstack/echo/v4 v4.11.3 + github.com/mattn/go-sqlite3 v1.14.18 + golang.org/x/crypto v0.16.0 +) require ( - github.com/labstack/echo/v4 v4.11.1 // 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/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.12.0 // indirect - golang.org/x/sys v0.11.0 // indirect - golang.org/x/text v0.12.0 // indirect + golang.org/x/net v0.17.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect ) |