Skip to content

Commit

Permalink
go 1.19, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Apr 18, 2023
1 parent 099264b commit f4dcd38
Show file tree
Hide file tree
Showing 3 changed files with 217 additions and 87 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export
all: help

build: dep ## Build the binary file for server
@go build -i -v -ldflags "-X main.version=`git describe --tags`" ./cmd/$(PRG)/
@go build -v -ldflags "-X main.version=`git describe --tags`" ./cmd/$(PRG)/

## Build app used in docker from scratch
#build-standalone: cov vet lint lint-more
Expand Down
58 changes: 45 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,52 @@
module github.com/apisite/logbase

go 1.16
go 1.19

require (
github.com/birkirb/loggers-mapper-logrus v0.0.0-20180326232643-461f2d8e6f72
github.com/gin-gonic/gin v1.7.3
github.com/jackc/pgx/v4 v4.1.2
github.com/jessevdk/go-flags v1.4.0
github.com/pkg/errors v0.8.1
github.com/satyrius/gonx v1.3.1-0.20181123214749-d96bd26e3b2c
github.com/shopspring/decimal v0.0.0-20191130220710-360f2bc03045 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/stretchr/testify v1.4.0
golang.org/x/text v0.3.2
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect
github.com/gin-gonic/gin v1.9.0
github.com/jackc/pgx/v4 v4.18.1
github.com/jessevdk/go-flags v1.5.0
github.com/pkg/errors v0.9.1
github.com/satyrius/gonx v1.4.0
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.2
golang.org/x/text v0.9.0
gopkg.in/birkirb/loggers.v1 v1.1.0
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)

require (
github.com/bytedance/sonic v1.8.0 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.11.2 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
github.com/jackc/puddle v1.3.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/smartystreets/goconvey v1.8.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.9 // indirect
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.6.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit f4dcd38

Please sign in to comment.