diff options
| author | jakka <jakkadoujin@gmail.com> | 2025-04-12 14:44:39 +0300 |
|---|---|---|
| committer | jakka <jakkadoujin@gmail.com> | 2025-04-12 14:44:39 +0300 |
| commit | 1675136966473083e970badfe92433a05d2d7fee (patch) | |
| tree | 5cd22f2ee065514a1c5db508f6d6a5ed3757c454 /go.mod | |
| parent | 6f3071a58211598ee23d1ef6ab17156e15b2e27b (diff) | |
implemented database and concurrent file scanning
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,9 @@ go 1.24.2 require github.com/urfave/cli/v2 v2.27.6 require ( + github.com/fatih/color v1.7.0 // indirect + github.com/mattn/go-colorable v0.1.2 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect github.com/tidwall/btree v1.4.2 // indirect github.com/tidwall/gjson v1.14.3 // indirect github.com/tidwall/grect v0.1.4 // indirect @@ -12,9 +15,12 @@ require ( github.com/tidwall/pretty v1.2.0 // indirect github.com/tidwall/rtred v0.1.2 // indirect github.com/tidwall/tinyqueue v0.1.1 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/term v0.28.0 // indirect ) require ( + github.com/briandowns/spinner v1.23.2 github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/tidwall/buntdb v1.3.2 |
