diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 15:17:18 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 15:17:18 +0530 |
commit | 82d5136c1b03efbb99931884dd75ab1160689ceb (patch) | |
tree | 3095f344055c4ad54a8238599839fa0088054fbd /go.mod | |
parent | a3ead3d67520704eda55a74841b00d5766728fab (diff) |
Refactoring project - Introducing handlers,models and utils- Updating previous hasher and idgen func + formatting
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 ) |