opengist/go.mod

58 lines
2.2 KiB
Modula-2
Raw Normal View History

2023-05-15 19:07:29 +00:00
module github.com/thomiceli/opengist
2023-03-14 15:22:52 +00:00
2023-04-04 13:17:55 +00:00
go 1.19
2023-03-14 15:22:52 +00:00
require (
github.com/glebarez/sqlite v1.8.0
2023-03-14 15:22:52 +00:00
github.com/go-playground/validator/v10 v10.11.0
github.com/google/uuid v1.3.0
github.com/gorilla/sessions v1.2.1
github.com/labstack/echo/v4 v4.10.0
github.com/markbates/goth v1.77.0
2023-03-14 15:22:52 +00:00
github.com/rs/zerolog v1.29.0
golang.org/x/crypto v0.2.0
golang.org/x/text v0.7.0
2023-03-14 15:22:52 +00:00
gopkg.in/yaml.v3 v3.0.1
gorm.io/gorm v1.24.6
modernc.org/sqlite v1.21.1
2023-03-14 15:22:52 +00:00
)
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/glebarez/go-sqlite v1.21.1 // indirect
2023-03-14 15:22:52 +00:00
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2 // indirect
2023-03-14 15:22:52 +00:00
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2023-03-14 15:22:52 +00:00
github.com/labstack/gommon v0.4.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
2023-03-14 15:22:52 +00:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
2023-03-14 15:22:52 +00:00
golang.org/x/sys v0.5.0 // indirect
golang.org/x/time v0.2.0 // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.25.0 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.22.3 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.1 // indirect
2023-03-14 15:22:52 +00:00
)