-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
66 lines (59 loc) · 2.41 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
module github.com/xxf098/actionflow
go 1.18
require (
cuelang.org/go v0.4.3
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
)
require (
github.com/elazarl/goproxy v0.0.0-20221015165544-a0805db90819 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/smartystreets/goconvey v1.7.2 // indirect
moul.io/http2curl v1.0.0 // indirect
)
require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.3.1 // indirect
github.com/go-ini/ini v1.67.0
github.com/imdario/mergo v0.3.12 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/parnurzeal/gorequest v0.2.16
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/xanzy/ssh-agent v0.3.0 // indirect
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)
require (
github.com/containerd/console v1.0.3
github.com/go-git/go-git/v5 v5.4.2
github.com/mattn/go-colorable v0.1.12
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/mitchellh/go-homedir v1.1.0
github.com/morikuni/aec v1.0.0
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
)
require (
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
github.com/emicklei/proto v1.10.0 // indirect
github.com/gofrs/flock v0.8.1
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/protocolbuffers/txtpbfmt v0.0.0-20220428173112-74888fd59c2b // indirect
github.com/rs/zerolog v1.28.0
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/text v0.3.8 // indirect
gopkg.in/yaml.v3 v3.0.1
)
replace cuelang.org/go => ../cue