-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
37 lines (34 loc) · 1.27 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
module github.com/Selleo/cli
go 1.21
require (
github.com/aws/aws-sdk-go v1.55.5
github.com/briandowns/spinner v1.23.1
github.com/gofrs/uuid/v5 v5.3.0
github.com/google/go-github/v64 v64.0.0
github.com/hexops/gotextdiff v1.0.3
github.com/labstack/echo/v4 v4.10.2
github.com/mitchellh/go-homedir v1.1.0
github.com/sergi/go-diff v1.3.1
github.com/urfave/cli/v2 v2.27.4
github.com/wzshiming/ctc v1.2.3
gopkg.in/ini.v1 v1.67.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/wzshiming/winseq v0.0.0-20200720163736-7fa652d2b50e // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
golang.org/x/text v0.13.0 // indirect
)