1
1
module github.com/linuxsuren/http-downloader
2
2
3
- go 1.18
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/AlecAivazis/survey/v2 v2.3.2
7
- github.com/go-git/go-git/v5 v5.4.2
7
+ github.com/go-git/go-git/v5 v5.10.1
8
8
github.com/golang/mock v1.6.0
9
9
github.com/google/go-github/v29 v29.0.3
10
10
github.com/h2non/gock v1.0.9
11
11
github.com/hinshun/vt10x v0.0.0-20220119200601-820417d04eec
12
12
github.com/linuxsuren/cobra-extension v0.0.16
13
13
github.com/mitchellh/go-homedir v1.1.0
14
14
github.com/onsi/ginkgo v1.16.5
15
- github.com/onsi/gomega v1.18.1
15
+ github.com/onsi/gomega v1.27.10
16
16
github.com/spf13/cobra v1.6.1
17
17
github.com/spf13/pflag v1.0.5
18
18
github.com/spf13/viper v1.9.0
@@ -30,31 +30,37 @@ require (
30
30
)
31
31
32
32
require (
33
+ dario.cat/mergo v1.0.0 // indirect
34
+ github.com/cloudflare/circl v1.3.3 // indirect
35
+ github.com/cyphar/filepath-securejoin v0.2.4 // indirect
36
+ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
37
+ github.com/google/go-cmp v0.6.0 // indirect
33
38
github.com/mattn/go-runewidth v0.0.14 // indirect
34
39
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
35
- github.com/prometheus/client_golang v1.11.1 // indirect
40
+ github.com/pjbgf/sha1cd v0.3.0 // indirect
36
41
github.com/rivo/uniseg v0.4.3 // indirect
42
+ github.com/skeema/knownhosts v1.2.1 // indirect
43
+ golang.org/x/mod v0.12.0 // indirect
44
+ golang.org/x/tools v0.13.0 // indirect
37
45
)
38
46
39
47
require (
40
- github.com/Microsoft/go-winio v0.4.16 // indirect
48
+ github.com/Microsoft/go-winio v0.6.1 // indirect
41
49
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
42
- github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
43
- github.com/acomagu/bufpipe v1.0.3 // indirect
50
+ github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
44
51
github.com/blang/semver/v4 v4.0.0
45
52
github.com/davecgh/go-spew v1.1.1 // indirect
46
- github.com/emirpasic/gods v1.12.0 // indirect
53
+ github.com/emirpasic/gods v1.18.1 // indirect
47
54
github.com/fsnotify/fsnotify v1.5.1 // indirect
48
- github.com/go-git/gcfg v1.5.0 // indirect
49
- github.com/go-git/go-billy/v5 v5.3.1 // indirect
50
- github.com/golang/protobuf v1.5.2 // indirect
55
+ github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
56
+ github.com/go-git/go-billy/v5 v5.5.0 // indirect
57
+ github.com/golang/protobuf v1.5.3 // indirect
51
58
github.com/google/go-querystring v1.0.0 // indirect
52
59
github.com/hashicorp/hcl v1.0.0 // indirect
53
- github.com/imdario/mergo v0.3.12 // indirect
54
60
github.com/inconshreveable/mousetrap v1.0.1 // indirect
55
61
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
56
62
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
57
- github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
63
+ github.com/kevinburke/ssh_config v1.2.0 // indirect
58
64
github.com/magiconair/properties v1.8.5 // indirect
59
65
github.com/mattn/go-colorable v0.1.6 // indirect
60
66
github.com/mattn/go-isatty v0.0.17 // indirect
@@ -69,15 +75,15 @@ require (
69
75
github.com/spf13/cast v1.4.1 // indirect
70
76
github.com/spf13/jwalterweatherman v1.1.0 // indirect
71
77
github.com/subosito/gotenv v1.2.0 // indirect
72
- github.com/xanzy/ssh-agent v0.3.0 // indirect
73
- golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
74
- golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
78
+ github.com/xanzy/ssh-agent v0.3.3 // indirect
79
+ golang.org/x/crypto v0.15.0 // indirect
80
+ golang.org/x/net v0.18.0
75
81
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
76
- golang.org/x/sys v0.5 .0 // indirect
77
- golang.org/x/term v0.5 .0 // indirect
78
- golang.org/x/text v0.3.8 // indirect
82
+ golang.org/x/sys v0.14 .0 // indirect
83
+ golang.org/x/term v0.14 .0 // indirect
84
+ golang.org/x/text v0.14.0 // indirect
79
85
google.golang.org/appengine v1.6.7 // indirect
80
- google.golang.org/protobuf v1.27.1 // indirect
86
+ google.golang.org/protobuf v1.28.0 // indirect
81
87
gopkg.in/ini.v1 v1.63.2 // indirect
82
88
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
83
89
gopkg.in/warnings.v0 v0.1.2 // indirect
0 commit comments