59 lines
2.3 KiB
Modula-2
59 lines
2.3 KiB
Modula-2
module gitlab.com/texm/shokku
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/bradleyfalzon/ghinstallation/v2 v2.1.0
|
|
github.com/glebarez/sqlite v1.5.0
|
|
github.com/go-playground/validator/v10 v10.11.0
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/google/go-github/v48 v48.0.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/labstack/echo/v4 v4.8.0
|
|
github.com/pquerna/otp v1.4.0
|
|
github.com/rs/zerolog v1.27.0
|
|
github.com/sethvargo/go-envconfig v0.8.2
|
|
github.com/stretchr/testify v1.7.1
|
|
github.com/texm/dokku-go v0.0.0-20230313121650-17f2109811a5
|
|
golang.org/x/crypto v0.7.0
|
|
golang.org/x/oauth2 v0.2.0
|
|
gorm.io/gorm v1.24.0
|
|
)
|
|
|
|
require (
|
|
github.com/boombuler/barcode v1.0.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // 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/golang-jwt/jwt/v4 v4.4.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-github/v45 v45.2.0 // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/labstack/gommon v0.3.1 // 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.16 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.1 // indirect
|
|
golang.org/x/net v0.8.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/grpc v1.41.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // 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
|
|
)
|