-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
44 lines (41 loc) · 1.49 KB
/
go.mod
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.23.4
require (
// https://github.com/fatih/color/releases
github.com/fatih/color v1.18.0
// https://github.com/google/go-github/releases
github.com/google/go-github/v67 v67.0.0
// https://github.com/ktrysmt/go-bitbucket/releases
github.com/ktrysmt/go-bitbucket v0.9.81
// https://github.com/sirupsen/logrus/releases
github.com/sirupsen/logrus v1.9.3
// https://github.com/spf13/cobra/releases
github.com/spf13/cobra v1.8.1
// https://github.com/stretchr/testify/releases
github.com/stretchr/testify v1.10.0
// https://github.com/xanzy/go-gitlab/releases
github.com/xanzy/go-gitlab v0.114.0
// https://pkg.go.dev/golang.org/x/net
golang.org/x/net v0.32.0
// https://pkg.go.dev/golang.org/x/oauth2
golang.org/x/oauth2 v0.24.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.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/time v0.3.0 // indirect
)