-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
44 lines (41 loc) · 1.52 KB
/
Copy pathgo.mod
File metadata and controls
44 lines (41 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/isindir/git-get
// UPDATE_HERE
// https://go.dev/dl/
go 1.26.4
require (
// https://github.com/fatih/color/releases
github.com/fatih/color v1.19.0
// https://github.com/google/go-github/releases
github.com/google/go-github/v88 v88.0.0
// https://github.com/ktrysmt/go-bitbucket/releases
github.com/ktrysmt/go-bitbucket v0.10.0
// https://github.com/sirupsen/logrus/releases
github.com/sirupsen/logrus v1.9.4
// https://github.com/spf13/cobra/releases
github.com/spf13/cobra v1.10.2
// https://github.com/stretchr/testify/releases
github.com/stretchr/testify v1.11.1
// https://gitlab.com/gitlab-org/api/client-go/-/releases
gitlab.com/gitlab-org/api/client-go v1.46.0
// https://pkg.go.dev/golang.org/x/oauth2
golang.org/x/oauth2 v0.36.0
// https://gopkg.in/yaml.v3
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-querystring v1.2.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.15 // indirect
github.com/mattn/go-isatty v0.0.22 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/net v0.56.0 // indirect
golang.org/x/sys v0.46.0 // indirect
golang.org/x/time v0.15.0 // indirect
)