generated from daystram/go-gin-gorm-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
74 additions
and
8 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,30 +1,96 @@ | ||
module github.com/daystram/ratify/ratify-be | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/gin-contrib/cors v1.3.1 | ||
github.com/gin-gonic/gin v1.6.3 | ||
github.com/go-gomail/gomail v0.0.0-20160411212932-81ebce5c23df | ||
github.com/go-openapi/spec v0.20.0 // indirect | ||
github.com/go-redis/redis/v8 v8.4.4 | ||
github.com/google/go-querystring v1.0.0 | ||
github.com/matcornic/hermes/v2 v2.1.0 | ||
github.com/mssola/user_agent v0.5.2 | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/viper v1.7.1 | ||
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14 | ||
github.com/swaggo/gin-swagger v1.3.0 | ||
github.com/swaggo/swag v1.7.0 | ||
github.com/xlzd/gotp v0.0.0-20181030022105-c8557ba2c119 | ||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 | ||
gorm.io/driver/postgres v1.0.5 | ||
gorm.io/gorm v1.20.8 | ||
) | ||
|
||
require ( | ||
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/Masterminds/semver v1.4.2 // indirect | ||
github.com/Masterminds/sprig v2.16.0+incompatible // indirect | ||
github.com/PuerkitoBio/goquery v1.5.0 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/andybalholm/cascadia v1.0.0 // indirect | ||
github.com/aokoli/goutils v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
github.com/go-openapi/spec v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.19.12 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-playground/validator/v10 v10.2.0 // indirect | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/google/uuid v1.0.0 // indirect | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/huandu/xstrings v1.2.0 // indirect | ||
github.com/imdario/mergo v0.3.6 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.7.0 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.0.5 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.5.0 // indirect | ||
github.com/jackc/pgx/v4 v4.9.0 // indirect | ||
github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.1 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.9 // indirect | ||
github.com/leodido/go-urn v1.2.0 // indirect | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mattn/go-runewidth v0.0.3 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/olekukonko/tablewriter v0.0.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/spf13/afero v1.1.2 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/ugorji/go/codec v1.1.13 // indirect | ||
github.com/vanng822/css v0.0.0-20190504095207-a21e860bcd04 // indirect | ||
github.com/vanng822/go-premailer v0.0.0-20191214114701-be27abe028fe // indirect | ||
go.opentelemetry.io/otel v0.15.0 // indirect | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e // indirect | ||
golang.org/x/text v0.3.4 // indirect | ||
golang.org/x/tools v0.0.0-20201223010750-3fa0e8f87c1a // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.23.0 // indirect | ||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect | ||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect | ||
gorm.io/driver/postgres v1.0.5 | ||
gorm.io/gorm v1.20.8 | ||
gopkg.in/ini.v1 v1.51.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |