Skip to content

Commit

Permalink
Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
clipperhouse committed Apr 27, 2020
1 parent 1607ba3 commit 2e7856a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/clipperhouse/jargon
require (
github.com/PuerkitoBio/goquery v1.5.1
github.com/clipperhouse/flag v0.0.1
github.com/clipperhouse/uax29 v1.0.6
github.com/clipperhouse/uax29 v1.1.0
github.com/kljensen/snowball v0.6.0
github.com/spf13/afero v1.2.2
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ github.com/clipperhouse/segment v0.9.2 h1:4hs+NnA3i1hLJjzThBvy+/iPe8zdNtDLmH0U+F
github.com/clipperhouse/segment v0.9.2/go.mod h1:dXhm+4H19wRiIENCoOqt/hGAfVxaakd65CBJrp8hc3U=
github.com/clipperhouse/uax29 v1.0.6 h1:whUwHPrOIaUv8f0cT8FPhNVLkEEPLAk+YorU+okyMlk=
github.com/clipperhouse/uax29 v1.0.6/go.mod h1:j6OhGfWZw7JQ1sM+nDLNpWM+VxW7Aa0U/Bx6U8NiliQ=
github.com/clipperhouse/uax29 v1.1.0 h1:gOcIX+0oTnBZdj86YgHnSdZHmb16FjKmHHRnNJAsrI0=
github.com/clipperhouse/uax29 v1.1.0/go.mod h1:j6OhGfWZw7JQ1sM+nDLNpWM+VxW7Aa0U/Bx6U8NiliQ=
github.com/kljensen/snowball v0.6.0 h1:6DZLCcZeL0cLfodx+Md4/OLC6b/bfurWUOUGs1ydfOU=
github.com/kljensen/snowball v0.6.0/go.mod h1:27N7E8fVU5H68RlUmnWwZCfxgt4POBJfENGMvNRhldw=
github.com/spf13/afero v1.2.2 h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=
Expand Down
3 changes: 2 additions & 1 deletion tokenizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"io"
"strings"

"github.com/clipperhouse/uax29"
"github.com/clipperhouse/uax29/words"
)

Expand All @@ -25,7 +26,7 @@ func TokenizeString(s string) *TokenStream {
}

type tokenizer struct {
sc *words.Scanner
sc *uax29.Scanner
}

func newTokenizer(r io.Reader) *tokenizer {
Expand Down

0 comments on commit 2e7856a

Please sign in to comment.