-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgo.mod
46 lines (43 loc) · 1.53 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
module github.com/abdfnx/resto
go 1.17
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/MakeNowJust/heredoc v1.0.0
github.com/abdfnx/looker v0.1.0
github.com/atotto/clipboard v0.1.4
github.com/briandowns/spinner v1.23.0
github.com/gdamore/tcell/v2 v2.7.4
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/jedib0t/go-pretty/v6 v6.5.6
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-runewidth v0.0.15
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/reflow v0.3.0
github.com/muesli/termenv v0.15.2
github.com/pkg/errors v0.9.1
github.com/rivo/tview v0.0.0-20211202162923-2a6de950f73b
github.com/sergi/go-diff v1.3.1
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
github.com/tidwall/gjson v1.17.1
github.com/tidwall/pretty v1.2.1
github.com/tidwall/sjson v1.2.5
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4
github.com/zyedidia/micro v1.4.1
golang.org/x/sys v0.18.0
golang.org/x/term v0.18.0
)
require (
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/tidwall/match v1.1.1 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)