summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Czapliński <czapkofan@gmail.com>2018-10-18 22:31:36 +0200
committerMateusz Czapliński <czapkofan@gmail.com>2018-10-18 22:31:36 +0200
commit8874e2aaaec77df97192bb55d1780aeaa66e485d (patch)
tree2443a0d55ec70ef75eac5b4560ac95983b66a6dc
parent77c98efcafbb2cf1baa54504d5cd318c116238a9 (diff)
go.mod: fix tcell version for case-insensitive filesystems
-rw-r--r--go.mod14
1 files changed, 7 insertions, 7 deletions
diff --git a/go.mod b/go.mod
index 0a405d2..01099d1 100644
--- a/go.mod
+++ b/go.mod
@@ -1,10 +1,10 @@
-module "github.com/akavel/up"
+module github.com/akavel/up
require (
- "github.com/gdamore/encoding" v0.0.0-20151215212835-b23993cbb635
- "github.com/gdamore/tcell" v0.0.0-20180321021336-aa381bce1bf2
- "github.com/lucasb-eyer/go-colorful" v0.0.0-20170903184257-231272389856
- "github.com/mattn/go-isatty" v0.0.3
- "github.com/mattn/go-runewidth" v0.0.2
- "golang.org/x/text" v0.0.0-20171214130843-f21a4dfb5e38
+ github.com/gdamore/encoding v0.0.0-20151215212835-b23993cbb635
+ github.com/gdamore/tcell v0.0.0-20180924055237-493f3b46b3c2
+ github.com/lucasb-eyer/go-colorful v0.0.0-20170903184257-231272389856
+ github.com/mattn/go-isatty v0.0.3
+ github.com/mattn/go-runewidth v0.0.2
+ golang.org/x/text v0.0.0-20171214130843-f21a4dfb5e38
)