-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgo.mod
More file actions
62 lines (57 loc) · 2.2 KB
/
go.mod
File metadata and controls
62 lines (57 loc) · 2.2 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module github.com/hashicorp/copywrite
go 1.23.0
toolchain go1.23.1
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/bmatcuk/doublestar/v4 v4.6.0
github.com/bradleyfalzon/ghinstallation/v2 v2.5.0
github.com/hashicorp/go-hclog v1.5.0
github.com/jedib0t/go-pretty/v6 v6.6.8
github.com/knadh/koanf v1.5.0
github.com/mattn/go-isatty v0.0.20
github.com/mergestat/timediff v0.0.3
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0
github.com/spf13/afero v1.14.0
github.com/spf13/cobra v1.6.1
github.com/spf13/pflag v1.0.7
github.com/stretchr/testify v1.10.0
github.com/thanhpk/randstr v1.0.4
golang.org/x/oauth2 v0.30.0
golang.org/x/sync v0.16.0
)
require (
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
github.com/cli/safeexec v1.0.0 // indirect
github.com/cloudflare/circl v1.6.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/google/go-github/v53 v53.0.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/joho/godotenv v1.3.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/term v0.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/cli/go-gh/v2 v2.12.2
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-github/v45 v45.2.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/samber/lo v1.51.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)