use our fork of mtibben/confusables for now

This commit is contained in:
Shivaram Lingamneni 2019-01-30 21:51:54 -05:00
parent b9b2553a2f
commit 18c0c9da45
3 changed files with 14 additions and 1 deletions

9
Gopkg.lock generated
View File

@ -61,6 +61,13 @@
pruneopts = "UT" pruneopts = "UT"
revision = "9520e82c474b0a04dd04f8a40959027271bab992" revision = "9520e82c474b0a04dd04f8a40959027271bab992"
[[projects]]
digest = "1:7caf3ea977a13cd8b9a2e1ecef1ccaa8e38f831b4f6ffcb8bd0aa909c48afb3a"
name = "github.com/oragono/confusables"
packages = ["."]
pruneopts = "UT"
revision = "d5dd03409482fae2457f0742be22782890f720c2"
[[projects]] [[projects]]
branch = "master" branch = "master"
digest = "1:2251e6a17ea4a6eaa708882a1cda837aae3e425edbb190ef39b761ecf15a5c3d" digest = "1:2251e6a17ea4a6eaa708882a1cda837aae3e425edbb190ef39b761ecf15a5c3d"
@ -199,12 +206,14 @@
"github.com/goshuirc/irc-go/ircmsg", "github.com/goshuirc/irc-go/ircmsg",
"github.com/mattn/go-colorable", "github.com/mattn/go-colorable",
"github.com/mgutz/ansi", "github.com/mgutz/ansi",
"github.com/oragono/confusables",
"github.com/oragono/go-ident", "github.com/oragono/go-ident",
"github.com/tidwall/buntdb", "github.com/tidwall/buntdb",
"golang.org/x/crypto/bcrypt", "golang.org/x/crypto/bcrypt",
"golang.org/x/crypto/sha3", "golang.org/x/crypto/sha3",
"golang.org/x/crypto/ssh/terminal", "golang.org/x/crypto/ssh/terminal",
"golang.org/x/text/secure/precis", "golang.org/x/text/secure/precis",
"golang.org/x/text/unicode/norm",
"gopkg.in/yaml.v2", "gopkg.in/yaml.v2",
] ]
solver-name = "gps-cdcl" solver-name = "gps-cdcl"

View File

@ -49,6 +49,10 @@
branch = "master" branch = "master"
name = "github.com/oragono/go-ident" name = "github.com/oragono/go-ident"
[[constraint]]
revision = "d5dd03409482fae2457f0742be22782890f720c2"
name = "github.com/oragono/confusables"
[[constraint]] [[constraint]]
name = "github.com/tidwall/buntdb" name = "github.com/tidwall/buntdb"
version = "1.0.0" version = "1.0.0"

View File

@ -8,7 +8,7 @@ package irc
import ( import (
"strings" "strings"
"github.com/mtibben/confusables" "github.com/oragono/confusables"
"golang.org/x/text/secure/precis" "golang.org/x/text/secure/precis"
"golang.org/x/text/unicode/norm" "golang.org/x/text/unicode/norm"
) )