-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
44 lines (39 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
module github.com/volution/z-run
go 1.17
require (
github.com/Pallinder/go-randomdata v1.2.0 // indirect
github.com/colinmarc/cdb v0.0.0-20190223170904-60f317823f70
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
github.com/junegunn/fzf v0.0.0-20230310132222-1116e481bef4
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-shellwords v1.0.12 // indirect
github.com/peterh/liner v1.2.2
github.com/rivo/uniseg v0.4.4 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/vbauerster/mpb/v5 v5.4.0
go.starlark.net v0.0.0-20230302034142-4b1e35fe2254
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.6.0
golang.org/x/term v0.6.0
golang.org/x/text v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
require (
github.com/jessevdk/go-flags v1.5.0
github.com/zeebo/xxh3 v1.0.2
)
require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell v1.4.0 // indirect
github.com/gdamore/tcell/v2 v2.6.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/saracen/walker v0.1.3 // indirect
)
replace (
github.com/colinmarc/cdb => github.com/cipriancraciun/go-cdb-lib v0.0.0-20190809203657-d959ce9cc674
github.com/junegunn/fzf => github.com/cipriancraciun/fzf v0.0.0-20230314092702-b7fd371a785c
)