~migadu/alps-devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch

[PATCH] Bump minimum go version

Details
Message ID
<20230507070314.11827-1-mocheryl@mocheryl.org>
DKIM signature
missing
Download raw message
Patch: +20 -9
---
The project doesn't build with go version 1.13 anymore because some
dependencies require a newer version. I propose we set the minimum
version with whatever Echo is using.

 go.mod | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)

diff --git a/go.mod b/go.mod
index ff7b242..1214135 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module git.sr.ht/~migadu/alps

go 1.13
go 1.17

require (
	github.com/aymerick/douceur v0.2.0
@@ -15,20 +15,31 @@ require (
	github.com/emersion/go-webdav v0.4.0
	github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee
	github.com/google/uuid v1.3.0
	github.com/kr/pretty v0.1.0 // indirect
	github.com/labstack/echo/v4 v4.10.2
	github.com/labstack/gommon v0.4.0
	github.com/mattn/go-runewidth v0.0.14 // indirect
	github.com/microcosm-cc/bluemonday v1.0.23
	github.com/olekukonko/tablewriter v0.0.5 // indirect
	github.com/rivo/uniseg v0.4.4 // indirect
	github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
	github.com/teambition/rrule-go v1.8.2 // indirect
	github.com/yuin/gopher-lua v1.1.0
	gitlab.com/golang-commonmark/linkify v0.0.0-20200225224916-64bca66f6ad3
	golang.org/x/crypto v0.7.0 // indirect
	golang.org/x/net v0.8.0
	gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
	jaytaylor.com/html2text v0.0.0-20211105163654-bc68cce691ba
	layeh.com/gopher-luar v1.0.10
)

require (
	github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect
	github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
	github.com/gorilla/css v1.0.0 // indirect
	github.com/mattn/go-colorable v0.1.13 // indirect
	github.com/mattn/go-isatty v0.0.17 // indirect
	github.com/mattn/go-runewidth v0.0.14 // indirect
	github.com/olekukonko/tablewriter v0.0.5 // indirect
	github.com/rivo/uniseg v0.4.4 // indirect
	github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
	github.com/teambition/rrule-go v1.8.2 // indirect
	github.com/valyala/bytebufferpool v1.0.0 // indirect
	github.com/valyala/fasttemplate v1.2.2 // indirect
	golang.org/x/crypto v0.7.0 // indirect
	golang.org/x/sys v0.6.0 // indirect
	golang.org/x/text v0.8.0 // indirect
	golang.org/x/time v0.3.0 // indirect
)
-- 
2.30.2
Reply to thread Export thread (mbox)