summaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2020-02-04 12:31:00 +0900
committerGitHub <noreply@github.com>2020-02-04 12:31:00 +0900
commit311b78ae82fc8b06f0eefbd54d6290f3a40d5e23 (patch)
tree563fb2acaf5a59c2562681d6b98135d92ccb263f /go.mod
parentf5cf4fc8fbfbe6e02cb1ee700c035c073db4a5cb (diff)
[windows] Use native walker since output of DOS command is not UTF-8 encoded (#1847)
Makes scanning 300x faster on Windows
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod22
1 files changed, 9 insertions, 13 deletions
diff --git a/go.mod b/go.mod
index 448e1c3e..c2e79aa8 100644
--- a/go.mod
+++ b/go.mod
@@ -1,19 +1,15 @@
module github.com/junegunn/fzf
require (
- github.com/gdamore/encoding v0.0.0-20151215212835-b23993cbb635 // indirect
- github.com/gdamore/tcell v0.0.0-20170915061752-0a0db94084df
- github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
- github.com/jtolds/gls v4.2.1+incompatible // indirect
- github.com/lucasb-eyer/go-colorful v0.0.0-20170223221042-c900de9dbbc7 // indirect
- github.com/mattn/go-isatty v0.0.0-20160806122752-66b8e73f3f5c
- github.com/mattn/go-runewidth v0.0.0-20170201023540-14207d285c6c
- github.com/mattn/go-shellwords v1.0.3
- github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
- github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c // indirect
- golang.org/x/crypto v0.0.0-20170728183002-558b6879de74
- golang.org/x/sys v0.0.0-20190509141414-a5b02f93d862 // indirect
- golang.org/x/text v0.0.0-20170530162606-4ee4af566555 // indirect
+ github.com/gdamore/tcell v1.3.0
+ github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
+ github.com/mattn/go-isatty v0.0.12
+ github.com/mattn/go-runewidth v0.0.8
+ github.com/mattn/go-shellwords v1.0.9
+ github.com/saracen/walker v0.0.0-20191201085201-324a081bae7e
+ golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d
+ golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5
+ golang.org/x/text v0.3.2 // indirect
)
go 1.13