-
Notifications
You must be signed in to change notification settings - Fork 2
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 #5 from strobelm/sec-updates-feb-24
(chore) Security Updates
- Loading branch information
Showing
4 changed files
with
169 additions
and
50 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
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,52 +1,63 @@ | ||
module github.com/TUM-Dev/meldeplattform | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
toolchain go1.22.0 | ||
|
||
require ( | ||
github.com/crewjam/saml v0.4.12 | ||
github.com/gin-gonic/gin v1.8.1 | ||
github.com/glebarez/sqlite v1.5.0 | ||
github.com/golang-jwt/jwt/v4 v4.4.3 | ||
github.com/google/uuid v1.3.0 | ||
github.com/microcosm-cc/bluemonday v1.0.21 | ||
github.com/crewjam/saml v0.4.14 | ||
github.com/gin-gonic/gin v1.9.1 | ||
github.com/glebarez/sqlite v1.10.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/microcosm-cc/bluemonday v1.0.26 | ||
github.com/russross/blackfriday/v2 v2.1.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
gorm.io/gorm v1.24.2 | ||
gorm.io/gorm v1.25.7 | ||
) | ||
|
||
require ( | ||
github.com/aymerick/douceur v0.2.0 // indirect | ||
github.com/beevik/etree v1.1.0 // indirect | ||
github.com/beevik/etree v1.3.0 // indirect | ||
github.com/bytedance/sonic v1.10.2 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect | ||
github.com/chenzhuoyu/iasm v0.9.1 // indirect | ||
github.com/crewjam/httperr v0.2.0 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/glebarez/go-sqlite v1.19.1 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.10.0 // indirect | ||
github.com/goccy/go-json v0.9.7 // indirect | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/glebarez/go-sqlite v1.22.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.18.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/gorilla/css v1.0.1 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/jonboulle/clockwork v0.2.2 // indirect | ||
github.com/jonboulle/clockwork v0.4.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.6 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/mattermost/xml-roundtrip-validator v0.1.0 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.1 // indirect | ||
github.com/ncruces/go-strftime v0.1.9 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect | ||
github.com/russellhaering/goxmldsig v1.2.0 // indirect | ||
github.com/ugorji/go/codec v1.2.7 // indirect | ||
golang.org/x/crypto v0.0.0-20220128200615-198e4374d7ed // indirect | ||
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect | ||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/russellhaering/goxmldsig v1.4.0 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.12 // indirect | ||
golang.org/x/arch v0.7.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
modernc.org/libc v1.19.0 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.4.0 // indirect | ||
modernc.org/sqlite v1.19.1 // indirect | ||
modernc.org/libc v1.41.0 // indirect | ||
modernc.org/mathutil v1.6.0 // indirect | ||
modernc.org/memory v1.7.2 // indirect | ||
modernc.org/sqlite v1.29.0 // indirect | ||
) |
Oops, something went wrong.