forked from hazelcast/hazelcast-commandline-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
61 lines (56 loc) · 2.28 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
module github.com/hazelcast/hazelcast-commandline-client
go 1.18
require (
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
github.com/alecthomas/chroma v0.9.2
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/hazelcast/hazelcast-go-client v1.3.1-0.20220927121914-35e33c479ef2
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mattn/go-colorable v0.1.7
github.com/mattn/go-runewidth v0.0.13
github.com/mattn/go-tty v0.0.3
github.com/nathan-fiscaletti/consolesize-go v0.0.0-20210105204122-a87d9f614b9d
github.com/pkg/term v1.1.0
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721 // indirect
github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897 // indirect
github.com/containerd/console v1.0.3 // indirect
github.com/creack/pty v1.1.17 // indirect
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/shirou/gopsutil/v3 v3.21.5 // indirect
github.com/tklauser/go-sysconf v0.3.4 // indirect
github.com/tklauser/numcpus v0.2.1 // indirect
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
// sql browser
require (
github.com/atotto/clipboard v0.1.4
github.com/charmbracelet/bubbles v0.10.3
github.com/charmbracelet/bubbletea v0.20.0
github.com/charmbracelet/lipgloss v0.5.0
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739
)
require (
github.com/apache/thrift v0.14.1
// termdbms
github.com/muesli/reflow v0.3.0
)