Switch to my fork of json5

This should reduce go get download times for micro considerably
because the original json5 committed a bunch of binaries which
cause the repository to be very large and slow to download.

My fork fixes that.
This commit is contained in:
Zachary Yedidia
2016-09-29 18:43:10 -04:00
parent 0293b774f3
commit 7d16e97b95
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import (
"os"
"strings"
"github.com/yosuke-furukawa/json5/encoding/json5"
"github.com/zyedidia/json5/encoding/json5"
"github.com/zyedidia/tcell"
)

View File

@@ -8,8 +8,8 @@ import (
"strconv"
"strings"
"github.com/yosuke-furukawa/json5/encoding/json5"
"github.com/zyedidia/glob"
"github.com/zyedidia/json5/encoding/json5"
)
type optionValidator func(string, interface{}) error