aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-05-21 08:51:51 +0100
committerPaulo Gomes <pjbgf@linux.com>2023-05-21 08:51:51 +0100
commita8bb14673e8d56ce012c790a88b9a372267186c8 (patch)
treef67cd648452c33a75bd72978d545e700bd44bf1d /go.mod
parentce08ae04c6fb0cbea350e31b329e8187185ec868 (diff)
downloadgo-git-a8bb14673e8d56ce012c790a88b9a372267186c8.tar.gz
*: Bump Go version to 1.18 on go.mod
Signed-off-by: Paulo Gomes <pjbgf@linux.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 11 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index f062b1a..604a330 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,7 @@
module github.com/go-git/go-git/v5
-go 1.13
+// go-git supports the last 3 stable Go versions.
+go 1.18
require (
github.com/ProtonMail/go-crypto v0.0.0-20230417170513-8ee5748c52b5
@@ -28,3 +29,12 @@ require (
golang.org/x/text v0.9.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
)
+
+require (
+ github.com/Microsoft/go-winio v0.5.2 // indirect
+ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
+ github.com/cloudflare/circl v1.1.0 // indirect
+ github.com/kr/pretty v0.2.1 // indirect
+ github.com/kr/text v0.2.0 // indirect
+ gopkg.in/warnings.v0 v0.1.2 // indirect
+)