1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

Update minimum supported Go version 1.17 -> 1.18, and modules

This patch updates the minimum supported Go version from 1.17 to 1.18,
and also the versions of our dependencies.

Go 1.18 is now 2 releases old, and easily available in most Linux
distributions, including Debian stable (via backports).
This commit is contained in:
Alberto Bertogli
2023-02-05 10:42:37 +00:00
parent 77328b88ed
commit ab63834cba
2 changed files with 16 additions and 38 deletions

12
go.mod
View File

@@ -1,21 +1,21 @@
module blitiri.com.ar/go/chasquid
go 1.17
go 1.18
require (
blitiri.com.ar/go/log v1.1.0
blitiri.com.ar/go/spf v1.5.1
blitiri.com.ar/go/systemd v1.1.0
github.com/google/go-cmp v0.5.7
golang.org/x/crypto v0.2.0
golang.org/x/net v0.2.0
golang.org/x/term v0.2.0
golang.org/x/text v0.4.0
golang.org/x/crypto v0.5.0
golang.org/x/net v0.5.0
golang.org/x/term v0.4.0
golang.org/x/text v0.6.0
golang.org/x/tools v0.1.12
google.golang.org/protobuf v1.28.1
)
require (
golang.org/x/sys v0.2.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)