-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
118 lines (112 loc) · 5.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
module github.com/let-sh/cli
go 1.18
replace github.com/charmbracelet/bubbles v0.7.6 => github.com/OasisNetworks/bubbles v0.7.7-0.20210226193817-28eb5c775530
replace github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a => github.com/let-sh/graphql v0.0.0-20210723145227-14195939c641
require (
github.com/aliyun/aliyun-oss-go-sdk v2.1.5+incompatible
github.com/atotto/clipboard v0.1.2
github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f // indirect
github.com/beyondstorage/go-service-cos/v2 v2.3.0
github.com/beyondstorage/go-storage/v4 v4.7.0
github.com/c2h5oh/datasize v0.0.0-20200825124411-48ed595a09d2
github.com/charmbracelet/bubbles v0.7.6
github.com/charmbracelet/bubbletea v0.14.1
github.com/containerd/console v1.0.2 // indirect
github.com/creack/pty v1.1.11
github.com/fatih/color v1.12.0
github.com/getsentry/sentry-go v0.9.0
github.com/google/go-github/v33 v33.0.0
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/go-retryablehttp v0.7.0
github.com/joho/godotenv v1.3.0
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/machinebox/graphql v0.2.2
github.com/manifoldco/promptui v0.8.0
github.com/matishsiao/goInfo v0.0.0-20200404012835-b5f882ee2288
github.com/matryer/is v1.4.0 // indirect
github.com/mholt/archiver/v3 v3.5.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/go-ps v1.0.0
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.9.0
github.com/myesui/uuid v1.0.0 // indirect
github.com/otiai10/copy v1.4.2
github.com/pelletier/go-toml v1.9.3
github.com/prometheus/procfs v0.0.10 // indirect
github.com/rancher/remotedialer v0.2.6-0.20201012155453-8b1b7bb7d05f
github.com/rogpeppe/go-internal v1.3.0
github.com/sabhiram/go-gitignore v0.0.0-20201211210132-54b8a0bf510f
github.com/satori/go.uuid v1.2.0 // indirect
github.com/segmentio/textio v1.2.0
github.com/shirou/gopsutil/v3 v3.21.9-0.20210919144451-80d5b574053f
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/theckman/yacspin v0.8.0
github.com/tidwall/gjson v1.12.1
github.com/twinj/uuid v1.0.0
github.com/vbauerster/mpb/v7 v7.0.3
github.com/weaveworks/procspy v0.0.0-20150706124340-cb970aa190c3
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
)
require (
github.com/mdp/qrterminal/v3 v3.0.0
github.com/spf13/cast v1.4.1
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
)
require (
github.com/StackExchange/wmi v1.2.1 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/Xuanwo/templateutils v0.1.0 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/andybalholm/brotli v1.0.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/dave/dst v0.26.2 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/go-ole/go-ole v1.2.6-0.20210915003542-8b1f7f90f6b1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/kevinburke/go-bindata v3.22.0+incompatible // indirect
github.com/klauspost/compress v1.10.10 // indirect
github.com/klauspost/pgzip v1.2.4 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mozillazg/go-httpheader v0.2.1 // indirect
github.com/nwaples/rardecode v1.1.0 // indirect
github.com/pierrec/lz4/v4 v4.0.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.4.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tencentyun/cos-go-sdk-v5 v0.7.31 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.3.0 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.26.0 // indirect
rsc.io/qr v0.2.0 // indirect
)