-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (26 loc) · 814 Bytes
/
go.mod
File metadata and controls
31 lines (26 loc) · 814 Bytes
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
module github.com/codeyourweb/fastfinder
go 1.24.0
toolchain go1.24.6
require (
github.com/akamensky/argparse v1.4.0
github.com/gen2brain/go-unarr v0.2.4
github.com/h2non/filetype v1.1.3
github.com/hillu/go-yara/v4 v4.3.4
golang.org/x/sys v0.39.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/dlclark/regexp2 v1.11.5
github.com/fsnotify/fsnotify v1.9.0
github.com/gdamore/tcell/v2 v2.13.5
github.com/rivo/tview v0.42.0
)
require (
github.com/gdamore/encoding v1.0.1 // indirect
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/term v0.38.0 // indirect
golang.org/x/text v0.32.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)