-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathgo.mod
35 lines (31 loc) · 1.23 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
module github.com/codeyourweb/fastfinder
go 1.17
require (
github.com/akamensky/argparse v1.3.1
github.com/gen2brain/go-unarr v0.1.2
github.com/h2non/filetype v1.1.3
github.com/hillu/go-yara/v4 v4.1.0
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
require (
github.com/dlclark/regexp2 v1.4.0
github.com/fsnotify/fsnotify v1.5.1
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
github.com/rivo/tview v0.0.0-20220106183741-90d72bc664f5
github.com/schollz/progressbar/v3 v3.8.3
)
require (
github.com/gdamore/encoding v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/stretchr/testify v1.5.1 // indirect
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)