From 82d5136c1b03efbb99931884dd75ab1160689ceb Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Tue, 28 Nov 2023 15:17:18 +0530 Subject: Refactoring project - Introducing handlers,models and utils- Updating previous hasher and idgen func + formatting --- go.mod | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index cf63ed7..f0c921e 100644 --- a/go.mod +++ b/go.mod @@ -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 ) -- cgit v1.2.3