summaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorStefan Tatschner <stefan@rumpelsepp.org>2018-12-13 06:36:15 +0100
committerJunegunn Choi <junegunn.c@gmail.com>2018-12-13 14:36:15 +0900
commit6f1eaa9b39769420e07c2947af22c4e481dea1d0 (patch)
tree041a95ed57480267f37c0707d7d8a3b2fba8f0fe /go.mod
parentca42e5e00a6ce53cf91aa2cbe946f437052b5fd1 (diff)
Use go modules and simplify build (#1444)
* Update .travis.yml and use stages This updates the .travis.yml configuration to use separate stages for unittests and CLI tests. The output is now clearer, since for unittests and CLI tests separate web pages are available. * Use go modules and simplify build
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod17
1 files changed, 17 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 00000000..f103f17e
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,17 @@
+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-20170529185110-b90f89a1e7a9 // indirect
+ golang.org/x/text v0.0.0-20170530162606-4ee4af566555 // indirect
+)