diff options
author | techknowlogick <techknowlogick@gitea.io> | 2019-09-12 07:58:32 -0400 |
---|---|---|
committer | Lauris BH <lauris.buksis@zzdats.lv> | 2019-09-12 14:58:32 +0300 |
commit | 3f5cdfe35905730ced41397c6ccd50df3804b5ec (patch) | |
tree | b6319c3bdc863059594f20643c160551f5028f47 /go.mod | |
parent | d0ad47bd5d3cef8f743d39b379d83a0e5585c709 (diff) | |
download | gitea-3f5cdfe35905730ced41397c6ccd50df3804b5ec.tar.gz gitea-3f5cdfe35905730ced41397c6ccd50df3804b5ec.zip |
use go 1.13 (#8088)
* use go 1.13
* use go 1.13 in gomod file
* Update Makefile
* update swagger deps
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,6 +1,6 @@ module code.gitea.io/gitea -go 1.12 +go 1.13 require ( cloud.google.com/go v0.45.0 // indirect @@ -43,6 +43,8 @@ require ( github.com/gliderlabs/ssh v0.2.2 github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd // indirect github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e // indirect + github.com/go-openapi/jsonreference v0.19.3 // indirect + github.com/go-openapi/runtime v0.19.5 // indirect github.com/go-redis/redis v6.15.2+incompatible github.com/go-sql-driver/mysql v1.4.1 github.com/go-swagger/go-swagger v0.20.1 @@ -66,14 +68,13 @@ require ( github.com/lib/pq v1.2.0 github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96 github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e + github.com/mailru/easyjson v0.7.0 // indirect github.com/markbates/goth v1.49.0 github.com/mattn/go-isatty v0.0.7 github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d // indirect github.com/mattn/go-sqlite3 v1.11.0 github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75 github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a - github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect - github.com/modern-go/reflect2 v1.0.1 // indirect github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae // indirect github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 @@ -103,11 +104,11 @@ require ( github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 // indirect github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53 golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472 - golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 + golang.org/x/net v0.0.0-20190909003024-a7b16738d86b golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 - golang.org/x/sys v0.0.0-20190904154756-749cb33beabd + golang.org/x/sys v0.0.0-20190910064555-bbd175535a8b golang.org/x/text v0.3.2 - golang.org/x/tools v0.0.0-20190903163617-be0da057c5e3 // indirect + golang.org/x/tools v0.0.0-20190910221609-7f5965fd7709 // indirect google.golang.org/appengine v1.6.2 // indirect gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175 // indirect |