Browse Source

use our fork of mtibben/confusables for now

tags/v1.0.0-rc1
Shivaram Lingamneni 5 years ago
parent
commit
18c0c9da45
3 changed files with 14 additions and 1 deletions
  1. 9
    0
      Gopkg.lock
  2. 4
    0
      Gopkg.toml
  3. 1
    1
      irc/strings.go

+ 9
- 0
Gopkg.lock View File

@@ -61,6 +61,13 @@
61 61
   pruneopts = "UT"
62 62
   revision = "9520e82c474b0a04dd04f8a40959027271bab992"
63 63
 
64
+[[projects]]
65
+  digest = "1:7caf3ea977a13cd8b9a2e1ecef1ccaa8e38f831b4f6ffcb8bd0aa909c48afb3a"
66
+  name = "github.com/oragono/confusables"
67
+  packages = ["."]
68
+  pruneopts = "UT"
69
+  revision = "d5dd03409482fae2457f0742be22782890f720c2"
70
+
64 71
 [[projects]]
65 72
   branch = "master"
66 73
   digest = "1:2251e6a17ea4a6eaa708882a1cda837aae3e425edbb190ef39b761ecf15a5c3d"
@@ -199,12 +206,14 @@
199 206
     "github.com/goshuirc/irc-go/ircmsg",
200 207
     "github.com/mattn/go-colorable",
201 208
     "github.com/mgutz/ansi",
209
+    "github.com/oragono/confusables",
202 210
     "github.com/oragono/go-ident",
203 211
     "github.com/tidwall/buntdb",
204 212
     "golang.org/x/crypto/bcrypt",
205 213
     "golang.org/x/crypto/sha3",
206 214
     "golang.org/x/crypto/ssh/terminal",
207 215
     "golang.org/x/text/secure/precis",
216
+    "golang.org/x/text/unicode/norm",
208 217
     "gopkg.in/yaml.v2",
209 218
   ]
210 219
   solver-name = "gps-cdcl"

+ 4
- 0
Gopkg.toml View File

@@ -49,6 +49,10 @@
49 49
   branch = "master"
50 50
   name = "github.com/oragono/go-ident"
51 51
 
52
+[[constraint]]
53
+  revision = "d5dd03409482fae2457f0742be22782890f720c2"
54
+  name = "github.com/oragono/confusables"
55
+
52 56
 [[constraint]]
53 57
   name = "github.com/tidwall/buntdb"
54 58
   version = "1.0.0"

+ 1
- 1
irc/strings.go View File

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

Loading…
Cancel
Save