aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod22
1 files changed, 16 insertions, 6 deletions
diff --git a/go.mod b/go.mod
index f062b1a..ee58848 100644
--- a/go.mod
+++ b/go.mod
@@ -1,9 +1,10 @@
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
+ github.com/ProtonMail/go-crypto v0.0.0-20230518184743-7afd39499903
github.com/acomagu/bufpipe v1.0.4
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
github.com/elazarl/goproxy v0.0.0-20221015165544-a0805db90819
@@ -20,11 +21,20 @@ require (
github.com/kevinburke/ssh_config v1.2.0
github.com/pjbgf/sha1cd v0.3.0
github.com/sergi/go-diff v1.1.0
- github.com/skeema/knownhosts v1.1.0
+ github.com/skeema/knownhosts v1.1.1
github.com/xanzy/ssh-agent v0.3.3
- golang.org/x/crypto v0.8.0
- golang.org/x/net v0.9.0
- golang.org/x/sys v0.7.0
+ golang.org/x/crypto v0.9.0
+ golang.org/x/net v0.10.0
+ golang.org/x/sys v0.8.0
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.3.3 // 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
+)