-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from joreiche/master
updated golang version to 1.21 and dependencies to latest
- Loading branch information
Showing
3 changed files
with
488 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,48 @@ | ||
module github.com/threagile/threagile | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/blend/go-sdk v2.0.0+incompatible // indirect | ||
github.com/gin-gonic/gin v1.7.3 | ||
github.com/go-playground/validator/v10 v10.8.0 // indirect | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/uuid v1.3.0 | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/gin-gonic/gin v1.9.1 | ||
github.com/google/uuid v1.4.0 | ||
github.com/jung-kurt/gofpdf v1.16.2 | ||
github.com/mattn/go-isatty v0.0.13 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/phpdave11/gofpdi v1.0.13 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/wcharczuk/go-chart v2.0.1+incompatible | ||
github.com/xuri/excelize/v2 v2.4.1 | ||
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 | ||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
github.com/xuri/excelize/v2 v2.8.0 | ||
golang.org/x/crypto v0.14.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/blend/go-sdk v1.20220411.3 // indirect | ||
github.com/bytedance/sonic v1.9.1 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.2 // 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.14.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.4 // indirect | ||
github.com/leodido/go-urn v1.2.4 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.8 // indirect | ||
github.com/phpdave11/gofpdi v1.0.7 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/richardlehane/mscfb v1.0.4 // indirect | ||
github.com/richardlehane/msoleps v1.0.3 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.11 // indirect | ||
github.com/xuri/efp v0.0.0-20230802181842-ad255f2331ca // indirect | ||
github.com/xuri/nfp v0.0.0-20230819163627-dc951e3ffe1a // indirect | ||
golang.org/x/arch v0.3.0 // indirect | ||
golang.org/x/image v0.11.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
) |
Oops, something went wrong.